I have a Target Date column and the typical Finish column. I am looking for a formula that will tell me if Target Date is less than Finish Date mark the cell AT RISK. But if the Target Date cell is blank leave it blank.
=IF([Target Date]@row > [Finish]@row , "Yes", "AT RISK")
I can't get the ISBLANK to work.