You could try typecasting the field in your query.
For eample, if the design view shows the field like this:
Amount: [Quantity] * [UnitPrice]
try changing it to:
Amount: CCur(Nz([Quantity] * [UnitPrice],0))
In general, the better solution is to design the table the way you want it,
and then use an Append query to populate it, rather than a Make Table.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Hello All:
>
[quoted text clipped - 8 lines]
>
> -Joe