Converting number to words in Crystal Reports

crystal-reports, formula

Solution

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

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

Problem

How can you convert a number to its written-equivalent in a formula? For example, `10000` is converted to `Ten Thousand`.

Original source