Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Amount in figures

Former Member
0 Kudos

hi ,

i need amount in figures.

eg : 10.000.000,00(normal format) as 10,00,00,000.00(required format)

how to solve this help me out.

thanks.

7 REPLIES 7

Former Member
0 Kudos

Hi,

Try Set Country command after assigning values.

e.g.: SET COUNTRY 'US'.

Ashvender

SantoshKallem
Active Contributor
0 Kudos

reward if useful

santhosh

Message was edited by:

santhosh reddy

0 Kudos

Hi santhosh,

You gave me the link which does not suit my requirement.

kindly check it

0 Kudos

Hi Pandiyan,

Have you tried Set Country command after assigning values.

e.g.: SET COUNTRY 'US'.

SantoshKallem
Active Contributor
0 Kudos

sorry that was mistake

check it now

Former Member
0 Kudos

V1 = 10.000.000,00

replace ',' with ' ' into V1.

replace '.' with ',' into V1.

replace ' ' with '.' into V1.

Former Member
0 Kudos

hi

good

declare a character with ,.

store the value 10.000.000,00 in a variable and separate as per your requirement and concatenate" ," value with each and each value that you separate.

Thanks

mrutyun^