FormatNumber()

Syntax

Result$ = FormatNumber(Number.d [, NbDecimals [, DecimalPoint$ [, ThousandSeparator$]]])
Description
Format a number into money-like format.

Parameters

Number The number to format
NbDecimals (optional) Number of decimals to display.
DecimalPoint$ (optional) The string to use to split the decimal and integer parts. It can be a multiple character string. Default value is ".".
ThousandSeparator$ (optional) The string to use to separate thousands. It can be a multiple character string. Default value is ",".

Return value

The formated number.

Example

  Debug FormatNumber(125400.25) ; Will display: 125,400.25

See Also

Str(), StrU(), StrF(), StrD()

Supported OS

All

<- FindString() - String Index - Hex() ->