Hi everyone,
I am in need of some help in writing a chained IF THEN.
I have four fields. I need the IF THEN to look at field one, then if field one is not null take that number otherwise move to field two. and so one down the line for the four fields.
Here is what I have for a formula now:
IF IsNull([Quote - Grand Total (converted)])
THEN [Quote - Grand Total (converted)]
ELSEIF IsNull([Quote - Grand Total w/ PEV (converted)])
THEN [Quote - Grand Total w/ PEV (converted)]
ELSEIF IsNull([Grand Total (converted)])
THEN [Grand Total (converted)]
ELSEIF IsNull([Total Product and PEV (converted)])
THEN [Total Product and PEV (converted)]
ELSE 0
ENDIF
currently this returns a 0.
Any suggestions?