Skip to main content
Version: Streamsheets 2.5

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

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

Examples

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