Make Table Query Question

J

Joe Blow

Hello All:

Access 2003

I have a make table query and one of the field is a $$$ dollar amount.
I set the properties to "currency".

However, in the table, the field type is "Number".

Any ideas why this is happening?

-Joe
 
A

Allen Browne

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top