I am trying to rewrite a formula and I need some help. It is to update a due date for recertification. The midyear criterion makes it more complex. Here are the parameters that reference other columns: the person's original certification date, and their 4 year recertification cycle. I am trying to get a column to autofill when their next recertification is due.
IF ([22-26recertification]@row) is BLANK
AND if the ([18-22recertification]@row (is not blank and) has a MONTH<8
THEN enter "July 31, " + (YEAR from [18-22recertification]@row + 4)
If the ([18-22recertification]@row (is not blank and) has a MONTH>=8
THEN enter "July 31, " + (YEAR from [18-22recertification]@row + 5)
IF ([18-22recertification]@row (is BLANK), AND the
(MONTH[original certification year]@row <8)
Then enter "July 31, " + (YEAR[original certification year]@row +4)
IF(MONTH [original certification year]@row>=8)
Then enter "July 31, " + (YEAR[original certification year]@row +4)
OTHERWISE
If ([22-26recertification]@row) is NOT BLANK,
AND the MONTH([22-26recertification]@row) <8
THEN enter "July 31, " + (YEAR ([22-26recertification]@row) +4)
IF the MONTH([22-26recertification]@row) >=8
THEN enter "July 31, " + (YEAR ([22-26recertification]@row) +5)
Can I put both scenarios for the first condition (if 22-26 Recertification IS blank, otherwise if it is not blank...) in the same equation with all the added conditions? I've tried to write this and get it to work up to adding that condition to it. I can't figure out from the documentation how to get that part to work. Alternately should I try doing it some other way than formula? I have also assigned them each a cohort number based on the yearly cycle they are on within the four years (so four cohorts). Could I use that somehow to simplify this? I'm going to try that next. Meantime, thanks for any help you can offer.