I'm trying to return one of two values if a person has a BMI>25 or if they have a weight of >210 I would like the true value to return. The following code returns BMI when neither of the above criteria is true. How can I return only the true value?
Expr3: IIf([Weight]>="210" And [BMI]>="25" Or [Weight] Is Not Null And [BMI] Is Null,[Weight] & " " & [WtUnit],[BMI])
Thank you.
Expr3: IIf([Weight]>="210" And [BMI]>="25" Or [Weight] Is Not Null And [BMI] Is Null,[Weight] & " " & [WtUnit],[BMI])
Thank you.