Converts text to a number in a locale-independent way.
Deze functie werkt in Google Spreadsheets hetzelfde als in Excel — dezelfde syntaxis en argumenten.
NUMBERVALUE(text, [decimal_separator], [group_separator])The NUMBERVALUE function converts text to a number by allowing you to specify custom decimal and group separators. This is particularly useful when importing data from different regions where number formatting conventions vary.
=NUMBERVALUE("1.234,56", ",", ".")Resultaat: 1234.56
Converts a European-formatted number string using a comma as a decimal separator into a standard numeric value.
NUMBERVALUE is locale-independent and allows you to define custom separators, whereas VALUE relies on the system's regional settings.