Creates numbers from common text formats ("15", "3,423.10", "5.0E-10").
function (optional
text
as nullable any, optionalculture
as nullable any) as nullable any
Returns a number
value from the given text value, text
.
Number.Conversion and formatting
Get the number value of "4"
.
Number.FromText("4")
4
Get the number value of "5.0e-10"
.
Number.FromText("5.0e-10")
5E-10