The VALUE function converts text values that represent numbers to numbers.
For example, you can use VALUE in combination with other functions to remove currency symbols or codes from data and convert the values to numbers.
Syntax
VALUE(Value to convert)
Arguments
Argument | Data type | Description |
Value to convert | Text | The text value to convert to a number value. |
The VALUE function returns a numeric result.
Calculation engine functionality differences
In Polaris, you cannot use the VALUE function with non-decimal representations of numbers (for example, “0x11.11p0”
).
In the Classic Engine, you can use non-decimal representations of numbers.
Syntax example
VALUE(Revenue as text)
This example uses the The VALUE function to convert the Revenue as text line item to a number value.
Additional information
Character compatibility
The VALUE function works only with text values that represent numbers. The value to be converted can contain non-numeric characters if they are:
- Special numbers such as Infinity, -Infinity, or NaN.
- A hexadecimal number.
- Numbers that use scientific notation.
- Negative numbers that contain the - symbol.
If the Value to convert argument contains any other characters, such as a comma, %, $, or £, the VALUE function returns a value of NaN (not a number).
Hexadecimal values
You can use the VALUE function to return a hexadecimal value as a number. For example, the formula VALUE(“0x11.11p0")
returns a number value of 17.07.
Special numbers
The VALUE function also works with special numbers such as Infinity, -Infinity, or NaN.
Excel equivalent
Examples
Basic example of VALUE function
This example has a list on columns that contains items with descriptive names for the values they contain. On rows, there are two line items:
- Text value, which contains the text values for the Value to convert argument.
- Number value, which uses the VALUE function to convert these text values to number values.
This formula also highlights how the VALUE function interacts with numbers that contain non-numeric characters.
Positive | Negative | Dollar | Sterling | Comma separators | Scientific notation | Hexadecimal | |
Text value | 134486.12 | -134486.12 | $134486.12 | £134486.12 | 134,486.12 | 3E8 | 0x11.11p0 |
Converted number-formatted values
| 123,456,789 | -123,456,789 | NaN | NaN | NaN | 300,000,000 | 17.07 |
Use VALUE with the MID function
Some functions, such as MID, return a text-formatted result. If these results are numeric, you can use the VALUE function to convert them to number-formatted.
For example, you can use the MID function to extract all characters after the first character. This enables you to remove currency symbols from numbers stored as text. The result can then be used with the VALUE function.
In this example the Revenue as text line item is text, and contains a value for several different currencies. The Revenue as number line item uses the MID and VALUE functions to convert the text that contains a number to numbers.
US Dollars | British Pound | Euro | Yen | |
Revenue as text | $2348765.38 | £1674500.96 | €1945632.29 | ¥257478438.94 |
Revenue as number
| 2,348,765.38 | 1,674,500.96 | 1,945,632.29 | 257,478,438.94 |