Please help,
Mark Nelson
If you need no more than 4 decimal places, use a Currency type field in
your temp table, regardless of whether the numbers have to do with dollars
or not. Currency is a fixed point number scaled to 4 decimal places. Set
the Format property to display as a "General Number" rather "Currency". Set
the Decimal Places to 4, and it will always display 1.2 as 1.2000 (provided
the calculation was correct in the first place).
If not using a temp table, you can achieve the same in a query by forcing
the result through CCur(), e.g. to mark up a charge by 10%:
Amount: CCur(1.1 * Nz([Charge],0)
--
Allen Browne - Microsoft MVP (Most Valuable Professional)
Perth, Western Australia.
Allen Browne's Database And Training.
Tips for MS Access users: http://users.bigpond.net.au/abrowne1
Reply to the newsgroup. (Email address has spurious "_SpamTrap")
"Mark Nelson" <Mark....@honeywell.com> wrote in message
news:df5601c216d7$6dbfc7e0$a5e62ecf@tkmsftngxa07...
Thanks,
Mark
--
Allen Browne - Microsoft MVP (Most Valuable Professional)
Perth, Western Australia.
Allen Browne's Database And Training.
Tips for MS Access users: http://users.bigpond.net.au/abrowne1
Reply to the newsgroup. (Email address has spurious "_SpamTrap")
"Mark Nelson" <Mark....@honeywell.com> wrote in message
news:fe6301c21798$6c70b9f0$9ae62ecf@tkmsftngxa02...