Converting Currency Field to Number

M

Melih

Hi,

I was wondering if anyone knew how to convert a currency
field into a numerical field such that the dollar sign is
been removed.

Situation is as follows: using a query to make a new
table. one of the fields is a currency field. In the
new table it continues to stay as a currency field;
although in the new table we want it as a numerical field.

Is there a way of doing this without having to change the
field type in the table manually?

Thanks.
 
F

fredg

Hi,

I was wondering if anyone knew how to convert a currency
field into a numerical field such that the dollar sign is
been removed.

Situation is as follows: using a query to make a new
table. one of the fields is a currency field. In the
new table it continues to stay as a currency field;
although in the new table we want it as a numerical field.

Is there a way of doing this without having to change the
field type in the table manually?

Thanks.

The $ is showing not because the field is a Currency datatype, but
because the field is formatted to display it as currency.
In the table, change the Field's Format property from "Currency" to
"Fixed".
Change the Decimal Places property to 2 (unless you want more).
 
V

Van T. Dinh

In the Make-Table Query, use:

CcyToDbl: CDbl([YourCurrencyField])

rather than the currency Field.
 

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