Converting number to words in Crystal Reports

Sensa picture Sensa · Apr 12, 2012 · Viewed 40.1k times · Source

How can you convert a number to its written-equivalent in a formula?

For example, 10000 is converted to Ten Thousand.

Answer

craig picture craig · Apr 13, 2012

You want to use the ToWords() and ProperCase() functions.

//{@Convert}
// returns Ten Thousand
ProperCase( ToWords(10000, 0) )