NAV 2013 : How to display numbers in words / text

Hi there, i want to ask how to display a decimal / integer field in words ?

For example i have a number “100” in amount field, and i want to display it as a word “one hundred”.

Thank you before :slight_smile:

Please search before posting.

Please check report 1401

Hi,

You can use the Report 1401 below functions :

checkReport.InitTextVariable;
checkReport.FormatNoText(NoText,ABS(Amount),currencycode);

where NoText is a Text variable of length 80 and Dimensions 2. and use Notext[] variable anywhere that contains amount in words.

follow http://moxie4nav.wordpress.com/2014/12/08/numbers-to-words/