Format Function

Converts a numeric expression to a string, and then formats it according to the format that you specify.

Syntax:


Format(expression [, format As String]) As String

Parameters:

expression: Numeric expression that you want to convert to a formatted string.

format: String that specifies the format code for the number. If format is omitted, the Format function works like the LibreOffice Basic Str() function.

Return value:

Text string.

Mã định dạng

The following list describes the codes that you can use for formatting a numeric expression:

0: If expression has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed.

If expression has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the expression has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting.

Decimal places in the expression are rounded according to the number of zeros that appear after the decimal separator in the format code.

#: If expression contains a digit at the position of the # placeholder in the format code, the digit is displayed, otherwise nothing is displayed at this position.

This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the format code than digits in the expression. Only the relevant digits of the expression are displayed.

.: vật thế chỗ thập phân quyết định số lần số bên trái và bên phải dấu cách thập phân.

If the format code contains only # placeholders to the left of this symbol, numbers less than 1 begin with a decimal separator. To always display a leading zero with fractional numbers, use 0 as a placeholder for the first digit to the left of the decimal separator.

%: Multiplies the expressionby 100 and inserts the percent sign (%) where the expression appears in the format code.

E- E+ e- e+ : If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the expression is formatted in the scientific or exponential format. The letter E or e is inserted between the number and the exponent. The number of placeholders for digits to the right of the symbol determines the number of digits in the exponent.

Nếu số mũ là âm, một dấu trừ được hiển thị trực tiếp phía trước một số mũ với E-, E+, e-, e+. Nếu số mũ là dương, một dấu cộng chỉ được hiển thị phía trước số mũ với E+ hay e+.

The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #).

Sử dụng một dấu chấm làm dấu cách hàng nghìn thì phụ thuộc vào thiết lập miền. Khi bạn gõ một số một cách trực tiếp vào mã nguồn Basic, lúc nào cũng cần phải sử dụng một dấu chấm làm dấu cách hàng nghìn. Ký tự thật được hiển thị làm dấu cách hàng nghìn phụ thuộc vào định dạng số trong thiết lập hệ thống của bạn.

- + $ ( ) space: A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character.

Để hiển thị ký tự khác với những cái được liệt kê ở đây, bạn cần phải gõ gạch chéo ngược (\) phía trước, hoặc "bao quanh nó trong dấu nháy kép".

\ : The backslash displays the next character in the format code.

Characters in the format code that have a special meaning can only be displayed as literal characters if they are preceded by a backslash. The backslash itself is not displayed, unless you enter a double backslash (\\) in the format code.

Các ký tự phải có gạch chéo ngược đi trước trong mã định dạng để hiển thị dạng ký tự nghĩa chữ là những ký tự định dạng ngày tháng và thời gian (a, c, d, h, m, n, p, q, s, t, w, y, /, :), những ký tự định dạng số (#, 0, %, E, e, dấu phẩy, dấu chấm), và những ký tự định dạng chuỗi (@, &, <, >, !).

You can also use the following predefined number formats. Except for "General Number", all of the predefined format codes return the number as a decimal number with two decimal places.

Nếu bạn sử dụng định dạng xác định sẵn, tên của định dạng phải nằm giữa dấu nháy kép.

Định dạng xác định sẵn

Số chung: mỗi số được hiển thị dưới dạng đã nhập vào.

Tiền tệ: chèn một ký hiệu đô-la vào phía trước số, và đặt số âm giữa dấu ngoặc.

Cố định: hiển thị ít nhất một chữ số phía trước dấu cách thập phân.

Chuẩn: hiển thị số dùng dấu cách hàng nghìn.

Phần trăm: nhân số với 100, và phụ thêm một ký hiệu phần trăm vào số.

Khoa học: hiển thị các số theo định dạng khoa học, v.d. 1.00E+03 = 1000).

A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers.

You can set the locale used for controlling the formatting numbers, dates and currencies in LibreOffice Basic in - Languages and Locales - General. In Basic format codes, the decimal point (.) is always used as placeholder for the decimal separator defined in your locale and will be replaced by the corresponding character.

Cũng vậy với thiết lập miền địa phương đối với định dạng của ngày tháng, thời gian và tiền tệ. Mã định dạng Basic sẽ được giải thích và hiển thị tùy theo thiết lập miền địa phương của bạn.

Error codes:

5 Sai gọi thủ tục

Example:


Sub ExampleFormat
    MsgBox Format(6328.2, "##,##0.00")
    REM Lúc nào cũng sử dụng một dấu cách thập phân khi bạn gõ số vào mã nguồn Basic.
    REM Hiển thị (v.d.) 6,328.20 theo miền địa phương tiếng Anh, và 6.328,20 theo miền địa phương tiếng Việt.
End Sub

Please support us!