I have a formula called "test" that looks at date columns and it works except the last part where I think I am telling it if there is no date in column "2nd GI" "Plan 4/7" or "Plan 4/11" to use the [PO Due Date] since there is a date there but it comes back blank, what do I need to look for to correct this.
IF !IsEmpty([2nd GI])
THEN [2nd GI]
ELSEIF
IsEmpty([4/11 Plan])
THEN [4/7 Plan]
ELSE [PO Due Date]
ENDIF
Due Date 1st GI 2nd GI 4/7 Plan 4/11 Plan test
3/31/2023
3/24/2023
3/30/2023
3/8/2023
3/14/2023
Thanks,
Mike