- Schedule Variance:
- Getting errors Invalid & Unparseable.
- My best guess to those results. Are the other columns that it's looking at have cells that are blank. ( actual finish date) resulting from the fact that that task is not completed yet. Thus nothing to draw from
- What I’m trying to have the formula pick up...is that if the cell is blank…””…that it will produce the Unchanged symbol.
- The formula works fine. But once I insert the last piece (in bold below) of the 2nd formula it produces the error messages above
Formula that works: =IF([Planned Finish]4 - DATEONLY([Actual Finish]4) > 0, "Up", IF([Planned Finish]4 - DATEONLY([Actual Finish]4) < 0, "Down", "Unchanged"))
Formula that doesn’t work: =IF([Planned Finish]1 - DATEONLY([Actual Finish]1) > 0, "Up", IF([Planned Finish]1 - DATEONLY([Actual Finish]1) < 0, "Down", "Unchanged", IF([Actual Finish]1 = "", "Unchanged"))))
