Skip to main content
Version: Streamsheets 3.0

VALUE

Converts a textual number representation to a number.

Syntax

=VALUE(Text, Locale)

Arguments

NameTypeDescription
TextStringA string representing a number value.
LocaleStringAn optional locale code. Currently only "en" and "de" are supported.

Default value: "Application 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!