Application Development and Automation 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: 
Read only

Amount in figures

Former Member
0 Likes
893

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.

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
Read only

Former Member
0 Likes
854

Hi,

Try Set Country command after assigning values.

e.g.: SET COUNTRY 'US'.

Ashvender

Read only

SantoshKallem
Active Contributor
0 Likes
854

reward if useful

santhosh

Message was edited by:

santhosh reddy

Read only

0 Likes
854

Hi santhosh,

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

kindly check it

Read only

0 Likes
854

Hi Pandiyan,

Have you tried Set Country command after assigning values.

e.g.: SET COUNTRY 'US'.

Read only

SantoshKallem
Active Contributor
0 Likes
854

sorry that was mistake

check it now

Read only

Former Member
0 Likes
854

V1 = 10.000.000,00

replace ',' with ' ' into V1.

replace '.' with ',' into V1.

replace ' ' with '.' into V1.

Read only

Former Member
0 Likes
854

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^