I have a Article for converting number into word, but tthis is from c#, if you want just pass your amount value into this and save someware in table and you can display it in rdlc
Follow the steps: 1) right click on your formula field In crystal report viewer 2) click edit formula 3) formula workshop window will open 4) left side of the window u have 'report custom functions' 5)right click and select new 6)give the name for function 7) and the right top you have a drop down. it shows 'Crystal Syntax' as default 8)change this to basic syntax.
9) save the function.
You can use ToWords() Function in Your Crystal Report...
Rafnas T PPosted Jun 29, 2017, 6:00 AM
Rafnas T PPosted Jun 29, 2017, 5:54 AM
Jyoti JodhaPosted Jun 29, 2017, 5:28 AM
rdlc report
Rafnas T PPosted Jun 29, 2017, 5:10 AM
Sundaram SubramanianPosted Jun 29, 2017, 3:24 AM
Jyoti JodhaPosted Jun 29, 2017, 3:18 AM
rdlc report
Sundaram SubramanianPosted Jun 29, 2017, 2:47 AM
1) right click on your formula field In crystal report viewer
2) click edit formula
3) formula workshop window will open
4) left side of the window u have 'report custom functions'
5)right click and select new
6)give the name for function
7) and the right top you have a drop down. it shows 'Crystal Syntax' as default
8)change this to basic syntax.
e.g.
currencyvar tt;
currencyvar dect;
tt :=100.30;
dect := tt - Truncate(tt);
tt := truncate(tt);
dect := dect * 100;
if dect = 0 then
'Rupees ' + ToWords (tt,0 ) + ' Only'
else
'Rupees ' + ToWords (tt,0) + ' And Paisa ' + ToWords(dect,0) + ' Only ';