Page 1 of 1

Reporting "<" values in ChemStation

Posted: Thu May 25, 2017 6:22 pm
by AmyQ31
With an intelligent report, is there a way to add conditional formatting field so that any values below calibration report as "<LOQ" or a similar text?

Re: Reporting "<" values in ChemStation

Posted: Fri May 26, 2017 5:57 am
by varossf
You need to create an IF statement in the value field
=iif(compound_concentration<value,"<LOQ",compound_concentration)

Of course you can replace Copmpound_concentration by Compound_Amount or Area or whatsoever.

iif is not a typo! it has to be that way

Re: Reporting "<" values in ChemStation

Posted: Tue May 30, 2017 9:17 pm
by AmyQ31
Thank you!