Calculated Field Formula IIF
Calculated Field Formula IIF
I am trying to create a calculated field that will return the result of another Calculated field,R_Split, if the conditions are met, if they are not met then it would be blank. I can get it to work in all ways but the R_Split portion.______IIF(UNIT= ^R4*****^ OR UNIT =^R3*****^ OR UNIT= ^R2*****^ OR UNIT=^R0L**^, R_Split, ^ ^)
=> RE: Calculated Field Formula IIF
Are the * characters literal values in the UNIT field?____Kathleen__R&R Support
==> RE: Calculated Field Formula IIF
Unit Field ^R3****^ represent the actual unit types.
===> RE: Calculated Field Formula IIF
Try:____IIF(^R4*****^$UNIT OR ^R3*****^$UNIT OR ^R2*****^$UNIT OR ^R0L**^$UNIT, R_Split, ^ ^)______Kathleen__R&R Support
====> RE: Calculated Field Formula IIF
nope, invalid argument.
=====> RE: Calculated Field Formula IIF
Is R_Split a numeric field?__If it is, use 0 rather than ^ ^ as the false argument.____Kathleen__R&R Support
======> RE: Calculated Field Formula IIF
Arrggg. That is so simple, that worked thanks so much.