‎2006 Jul 25 1:13 AM
Hi folks,
I am trying to add two numbers in my code and some times the numbers have comma in them. For example the value 25.00 I have has 25,00. Now when I execute my program I am getting an error saying the numbers are not according to the standards of number formats.
Can someone please let me know how can I solve this problem. Thanks
‎2006 Jul 25 1:22 AM
hi
try using the below code.
data: comma value ',',
deci value '.',
string(8),
string = '25,00'.
<b>replace comma with dec into string.</b>
Cheers,
Abdul Hakim
‎2006 Jul 25 1:17 AM
‎2006 Jul 25 1:27 AM
‎2006 Jul 25 1:29 AM
Hi Rich,
For example I have the value 25,00 in the field 'Mvalue'. Where 25,00 actually means 25.00. Now I want to change the value in the field 'Mvalue' from 25,00 to 25.00.
Please help me.
‎2006 Jul 25 1:35 AM
‎2006 Jul 25 1:22 AM
hi
try using the below code.
data: comma value ',',
deci value '.',
string(8),
string = '25,00'.
<b>replace comma with dec into string.</b>
Cheers,
Abdul Hakim