Hi Formula Friends -
I'm trying to calculate the "next test date" based whether a cell is "Surveillance (Monthly)" or "Baseline (Initial)" or "Response (Weekly)".
In the formula, it must take into account the following:
If Test Strategy in Parent Row = Surveillance (Monthly) or Baseline (Initial), then the Next Test Date should be = Max(Children([Test Date]8 + 30 days)
If Test Strategy in Parent Row = Response (Weekly), then the Next Test Date should be = MAX(CHILDREN([Test Date]8 + 7 days)
The formula I have is currently: =IF(OR([Test Strategy]8 = "Surveillance (Monthly)", [Test Strategy]8 = "Baseline (Initial)", MAX(CHILDREN([Test Date]8) + 30), MAX(CHILDREN([Test Date]8 + 7))
How can I fix this?