G
Guest
Hello,
I've got a query which calculates the concentration of CO2 in a solution
based on sample size and amount of acid used to titrate the sample.
I use -1 values in my tables to signify when the value is out of range of
the instrument (I can still use the analysis, but I need to report it as the
In my query I use an iif statement to pull the two values together:
CO2Report: IIf([CO2_total]>0,[CO2_total],">detection limit"). The expected
values are between 0 and ~5
This works beautifully except when CO2_total is less then 0.1. Access then
reports CO2_total*100, i.e, 0.032 mmol is reported as ~3.2
Why does it do this? How do I fix it?
Cheers
Susan
I've got a query which calculates the concentration of CO2 in a solution
based on sample size and amount of acid used to titrate the sample.
I use -1 values in my tables to signify when the value is out of range of
the instrument (I can still use the analysis, but I need to report it as the
detection limit).
In my query I use an iif statement to pull the two values together:
CO2Report: IIf([CO2_total]>0,[CO2_total],">detection limit"). The expected
values are between 0 and ~5
This works beautifully except when CO2_total is less then 0.1. Access then
reports CO2_total*100, i.e, 0.032 mmol is reported as ~3.2
Why does it do this? How do I fix it?
Cheers
Susan