Converts text to a number in a locale-independent way.
Эта функция в Google Таблицах работает так же, как в Excel — тот же синтаксис и аргументы.
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", ",", ".")Результат: 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.