commastr(
NUMBER
)

The commastr( function converts a number to text, with a comma every third digit. The number is converted as an integer, with no decimal point.


Parameters

This function has one parameter:

number – a numeric value.


Description

This function converts a number to text, with a comma every third digit. The number is converted as an integer, with no decimal point. If the parameter is text, it will be unchanged.

commastr(12345) ☞ 12,345

Note: This function is equivalent to:

pattern(number,"#,")

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.