Converting numeric amount into words.

HI there,

I’m having hard time in converting numeric amount into words in dynamics navision reports.

Could anyone can help me to patch things up?..

Thanx…

Ron [:)]

Hi

In Navision a report called Check (1401).it have a function called FormatNoText use this function convert.

Thanks

Jerome

That’s right.

BTW: have you already searched the forum as every once in while this subject pops up.

Thank you so much for the help guys…

Godbless to all…

Hi everyone,

Could someone can give some steps on how to use or to call the numeric amount field using the FormatNoText function and parameters.

Thank You Everyone,

Ron [:)]

Ron,

I joined both your threads about FormatNoText function.

Look at the Report 1401, examine the function(s), then you’ll understand - no spoon feeding at your age anymore.

BTW, please consider, that function(s) in R1401 are written for converting to English, numerals grammar is comparatively simple in English. If you intend to use different language, test, if you do need to change the algorithm of concatenating parts of text.

Hi Ron

Just followe the below step

1.Create report 1401 as a variable for example

Name data type subtype

Converter report Check

2.cereate a text variable for axample

Name data type subtype length

Notext text 80

3.go to the properties of NoText variable and set its Dimensions value as 2

4.Converter.FormatNoText(Notext,,) for example

Converter.FormatNoText(Notext,No1,‘INR’);
message(Notext[1]);

Notext is my array variable
No1 is the amount field which i’m going to convert as text
INR is the currency code (out put currency code)
Notext[1] will cntain the converted value(output text)

thats all

thanks
Jerome