format numbers

R

Rajko

I have a table with a column (text) where numbers are like 00000043,588000
and 0.8962.
How can these be formatted to display 043,588 and 0,8962?

Holgar
 
R

Rajko

I've got it.
Val(Replace([STANDARD_COST_PRICE],",",".")) AS [Standard Cost Price]
 
Top