money(
NUMBER
)

The money( function converts a number to text, formatted as money.


Parameters

This function has one parameter:

number – a number representing a monetary value.


Description

This function converts a number to text. The text will be formatted with commas every three digits and two digits after the decimal point.

money(5) ☞ 5.00
money(1234.5678) ☞ 1,234.57
money(98123.45) ☞ 98,123.45

Note: This function is equivalent to

pattern(number,"#.,##)

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.