Skip to main content
Version: Streamsheets 2.3

VALUE

Converts a textual number representation to a number.

Syntax

=VALUE(Text,[Locale])

Arguments

NameDescription
TextA string representing a number value.
LocaleAn optional locale code. Currently only "en" and "de" are supported. Defaults to current App locale.

Return Value

A number or #VALUE! if given Text cannot be converted.

Example

FunctionResult
=VALUE("22.45")22.45
=VALUE("22,45", "de")22,45
=VALUE("hello", "de")#VALUE!