J
Jeff Boyce
I'm going to guess that you do NOT have currency fields (i.e., data type =
currency in the underlying table). Instead, I'm suspecting you have Single
or Double (or Decimal) data types defined.
The reason I suspect this is because currency data types allow ONLY 4
decimal places, and you indicated a value of ".00013" (too many decimal
places!).
It may be that you are FORMATTING fields or controls as Currency, but that
doesn't change the underlying datatype in the tables. How it gets displayed
(formatting) is not the same as how it is stored.
There's a potential error-in-calculation that occurs when you rely on Single
or Double data types. If you only need (no more than) 4 decimal places of
accuracy, change the data type in the table to Currency.
Good luck!
Regards
Jeff Boyce
Microsoft Office/Access MVP
currency in the underlying table). Instead, I'm suspecting you have Single
or Double (or Decimal) data types defined.
The reason I suspect this is because currency data types allow ONLY 4
decimal places, and you indicated a value of ".00013" (too many decimal
places!).
It may be that you are FORMATTING fields or controls as Currency, but that
doesn't change the underlying datatype in the tables. How it gets displayed
(formatting) is not the same as how it is stored.
There's a potential error-in-calculation that occurs when you rely on Single
or Double data types. If you only need (no more than) 4 decimal places of
accuracy, change the data type in the table to Currency.
Good luck!
Regards
Jeff Boyce
Microsoft Office/Access MVP