Value.FromText

The function Value.FromText converts a value from its textual form to a specific data type. It can interpret the input text as a number, logical value, null value, datetime value, duration value, or t...

Syntax

Value.FromText(text as any, optional culture as nullable text) as any

About

The function Value.FromText converts a value from its textual form to a specific data type. It can interpret the input text as a number, logical value, null value, datetime value, duration value, or text value. If the text is empty, it will be considered as a null value. Additionally, a culture parameter can be included, such as "en-US", to specify the formatting conventions used in the conversion process.