Returns an expression formatted as a number.
Function FormatNumber( ByVal Expression As Object, Optional ByVal NumDigitsAfterDecimal As Integer = -1, Optional ByVal IncludeLeadingDigit As TriState = TriState.UseDefault, Optional ByVal UseParensForNegativeNumbers As TriState = TriState.UseDefault, Optional ByVal GroupDigits As TriState = TriState.UseDefault ) As String
The IncludeLeadingDigit, UseParensForNegativeNumbers, and GroupDigits arguments have the following settings:
Constant | Description |
---|---|
TriState.True | True |
TriState.False | False |
TriState.UseDefault | The computer's regional settings |
Exception type | Error number | Condition |
---|---|---|
13 | Type is not numeric. |
When one or more optional arguments are omitted, the values for omitted arguments are provided by the locale settings.
Note All settings information comes from the locale of the application. by default, that will be the locale set in the control panel. However, it may be changed programmatically by using the .NET Framework.
This example demonstrates the FormatNumber function.
Dim myNumber As Integer = 45600 Dim myString As String ' Returns "45,600.00". myString = FormatNumber(myNumber, 2, , ,TriState.True)
FormatCurrency Function | FormatDateTime Function | FormatPercent Function | Tristate Enumeration |