scientificnotation(
NUMBER
)

The scientificnotation( function converts a number to text, formatted in scientific notation.


Parameters

This function has one parameter:

number – a numeric value.


Description

This function converts a number to text, formatted in scientific notation with three places after the decimal point (for example 9.812e+4).

scientificnotation(1) ☞ 1.000E+0
scientificnotation(98123.45) ☞ 9.812E+4
scientificnotation(0.0004789) ☞ 4.789E-4

Note: This function is equivalent to:

pattern(number,"#.###E")

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.