Hi how can I format a currency field in a query to show without the £ symbol, but still include the correct figure after the decimal point? thanks
A:
In general, Access is prone to adding a currency symbol when it outputs currency columns. The simple solution is to convert the value to a numeric format like decimal, double or int (if there are no pennies):
Select CDec([MyCurrencyColumn]), CDbl([MyCurrencyColumn]), CInt([MyCurrencyColumn])
From ...
Thomas
2010-10-08 19:06:55