I have a number in a database with 1 decimal place
i.e. 7.4
I need to display on the oage with 2 decimals
i.e. 7.40
So I use formatnumber(rs("number"),2) but I am getting
74,00
There are two problems with this
a. decimal point is in the wrong place, making the figure 10x what it should be
b. why is the decimal now a comma(,) instead of a period(.)?
Anyone know what the issue is?
i.e. 7.4
I need to display on the oage with 2 decimals
i.e. 7.40
So I use formatnumber(rs("number"),2) but I am getting
74,00
There are two problems with this
a. decimal point is in the wrong place, making the figure 10x what it should be
b. why is the decimal now a comma(,) instead of a period(.)?
Anyone know what the issue is?