Hi everyone, this may be my silliest question yet, but nonetheless, I cannot figure this one out:
In the table RAW, I have a field "cost_of_call". This is a number, in cents, and I want to convert it to it's number in dollars. In Excel, this would be an easy calculation, but in Access, when I try to perform it, it returns the average whole number when I try to multiply by 0.01.
here are my example numbers:
23
55
506
3025
I need an UPDATE query that will turn these numbers into:
0.23
0.55
5.06
30.25
All I get when I run this query: UPDATE Raw SET Raw.cost_of_call = Format([cost_of_call]*0.01,"Fixed");
0
1
5
30
Can someone please tell me what the query needs to be to return values with 2 decimal points? Thanks!
Mike