Currency Formatting w/ LotusScript

Mindwatering Incorporated

Author: Tripp W Black

Created: 10/24/2012 at 06:59 PM

 

Category:
Notes Developer Tips
LotusScript, Sametime

Issue:
Need to format number to either US or Euro currencies.

Solutions:
US (Dollar): Format$(vardouble, "Currency") or Format(vardouble, "Standard")
Notes:
Above snippets assumes database/application currency type is US Dollars. Otherwise, they will return currency to the server's/app's currency default.
vardouble can be number or string with Format$

Euro: Format$(vardouble, "€#.##0,00")


previous page