Make Table Query is converting currency field to a number in the t

G

Guest

I have a make table query that is performing many cost currency calculations.
When you run the query as a SELECT query all of the calculations come out as
currency ex: $1.24. This is how I want it to come out. When I run it as a
make table query it converts the currency to a number in the table and I am
getting 1.2456 instead of the $1.24 that I was getting in the query. I am not
sure if this helps but the currency fields in the query are EXPRESSIONS that
I created. For the life of me I do not know why.
 
O

OfficeDev18 via AccessMonster.com

Try this: right click on each currency field in the query design grid, and in
the dialog box, type the word Currency in the Format space.

HTH
 
G

Guest

Mr OfficeDev18-
I tried this and it did not work. Any other suggestions.
Thank you for your quick response.
 
S

Steve Schapel

Curt,

You could try using the CCur() function in the query.

If you still need help with this, it will be a lot easier for potential
helpers if you could give some specific detail, examples, and the SQL
view of the make-table query.
 
O

OfficeDev18 via AccessMonster.com

Alternatively, you can run the Make Table query manually once. Then go in and
change the fields you want as currency to data type 'currency' (they will
probably be type 'number' with field size 'decimal' or 'single'). For the
future, instead of re-making the table, simply delete the table contents
(with a delete query) and change your Make Table query permanently to an
Append query.

There's more than one way to skin Access' cat.

HTH

Steve said:
Curt,

You could try using the CCur() function in the query.

If you still need help with this, it will be a lot easier for potential
helpers if you could give some specific detail, examples, and the SQL
view of the make-table query.
I have a make table query that is performing many cost currency calculations.
When you run the query as a SELECT query all of the calculations come out as
[quoted text clipped - 3 lines]
sure if this helps but the currency fields in the query are EXPRESSIONS that
I created. For the life of me I do not know why.
 

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