How can you convert a number to its written-equivalent in a formula?
For example, 10000
is converted to Ten Thousand
.
You want to use the ToWords()
and ProperCase()
functions.
//{@Convert}
// returns Ten Thousand
ProperCase( ToWords(10000, 0) )