Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
Community interest groups have now moved from Yammer to Microsoft Viva Engage. To join a Viva Engage community and take part in the latest discussions, fill out the Request access to Finance and Operations Viva Engage Community form and choose the community you want to join.
The NUMBERVALUE function returns a Real value that is converted from the specified String value. During the conversion, the specified decimal and digit grouping separators are considered.
Syntax
NUMBERVALUE (text, decimal separator, digit grouping separator)
Arguments
text: String
A text value that must be converted to a Real number.
decimal separator: String
A decimal separator. It's used to separate the integer and fractional parts of a decimal number.
digit grouping separator: String
A digit grouping separator. It's used as the thousands separator.
Return values
Real
The resulting numeric value.
Example
NUMBERVALUE( "1 234,56", ",", " ") returns 1234.56.