J
JohnLute
My query is working fine except that it's calculation is rounding down:
SELECT tblFacilitiesCasesProduced.txtFacilityID, (Format([ProdDate],"mmm""
'""yy")) AS ProdDate1, tblFacilitiesCasesProduced.TotalCasesProduced,
([TotalCasesProduced]\100000) AS DividePer100M
FROM tblFacilitiesCasesProduced;
For the value 255,000 I'm expecting "2.55" however Access is rounding down
to "2.00".
How can I remedy this?
Thanks for your help!
SELECT tblFacilitiesCasesProduced.txtFacilityID, (Format([ProdDate],"mmm""
'""yy")) AS ProdDate1, tblFacilitiesCasesProduced.TotalCasesProduced,
([TotalCasesProduced]\100000) AS DividePer100M
FROM tblFacilitiesCasesProduced;
For the value 255,000 I'm expecting "2.55" however Access is rounding down
to "2.00".
How can I remedy this?
Thanks for your help!