Converting Sined Fields

G

Gene

I'm sure its already been posted but I wasn't able to find anything on this.
I have a table that has a field "Unit Price" which is a sined field. I need
to convert the field to regular number or even better an implied decimal(eg.,
10058=100.58) But dont worry too much about that. Just need a query or a way
to convert the sined field into a large interger. Thanks advance.
Gene
 
B

Brendan Reynolds

If I understand the question correctly, don't you just need to divide by
100? For example, in a query ...

SELECT [TestField]/100 AS ConvertedValue
FROM tblTest;
 

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