I'm not sure how to handle the following situation... my data looks as follows:
The formula in Status2 (and filled down) reads as follows:
=IF([Act Finish Date]2 = "", "Open", IF(AND([Act Finish Date]3 = "", [Act Finish Date]2 <> ""), "Closed, Last Event", "Closed"))
In other words, the formula is checking not only if a row is Open or Closed but also determining which was the last closed event.
All of that works great until I insert a row between rows 5 and 6. Two things go wrong...
- 1. The formula in Status5 no longer looks at the next row down. Instead it keeps looking at the row it was looking at before I inserted the new row (which is now row 7... it skips the newly inserted Row 6).
-
- 2. The newly inserted row doesn't automatically fill down (presumably because of problem #1)
Any thoughts on how to get the newly inserted row to automatically get the formula and also have Row 5 always look at the "next" row even if I insert a new row below it?

