Need some assistance please. I looked at previous similar errors and comments however could not get this formula to work.
At Risk is a Flag - Symbol - Flag when the End Date is higher than today however the Status is not "Complete". Sometimes the End Date is blank and therefor require the ISBLANK formula.
My initial formula was:
=IF(AND([End Date]@row < TODAY(); NOT(Status@row = "Complete")); 1; 0)
-It works however also flag the empty End Date as a Risk.
Then tried some other ways however keep on getting errors:
=IF(AND(ISBLANK([End Date]@row)); [End Date]@row < TODAY(); NOT(Status@row = "Complete"); 1; 0)
Could somebody please take a look at assist me?
Thank you.