Formatting only affects the appearance of the original data, not its data
type. To make the column in the new table currency data type use the CCur
function to return the values as currency data type. In query design view,
in place of the field name out something like this:
MyCurrencyField: CCur(Nz([MyField],0))
This should insert the values of MyField as currency data in the new table
in a column named MyCurrencyField, converting any Nulls to zeros (you can of
course use whatever name you like for the new column).
Ken Sheridan
Stafford, England