NUMBERVALUE
Syntax
NUMBERVALUE(text, decimal_separator, group_separator)Arguments
Return value
Example
NUMBERVALUE(Interest_Text, ".", ",")
Excel equivalent
Last updated
Was this helpful?
The NUMBERVALUE function converts text into a numeric value by interpreting decimal and thousands separators, such as commas and periods. It is useful when working with numbers stored as text, especially when data formats vary across regions or sources.
NUMBERVALUE(text, decimal_separator, group_separator)text: The text to convert into a numeric value.
decimal_separator (Optional): The character used to separate the integer and fractional parts of a number.
group_separator (Optional): The character used as the thousands separator.
Returns the numeric value represented by the specified text.
NUMBERVALUE(Interest_Text, ".", ",")In this example, the Interest_Text column is a data input field containing numeric values stored as text. The NUMBERVALUE function is used to convert the Interest_Text values into numeric values that can be used along with other measures in the report.

Last updated
Was this helpful?
Was this helpful?