Hi,
I'm trying to complete the below formula to identify the most recent royalty review date in a series of reviews but can't quite seem to nail it.
What i'm trying to achieve is if:
the column named "review completed" has a number of reviews marked "yes", then take the most recent date in the adjacent "review due date" column, and add a set number of days ("months" column) based on matching the "frequency of review" cell to the lookup table "payment / review periods". Thus hopefully returning the most recent review + the appropriate number of days.
=IF(COUNTIF($[Review Completed (Y/N)]$17:$[Review Completed (Y/N)]$18,"Yes"),(INDEX($[Review Due Date]$17:$[Review Due Date]$18,MATCH("Yes",$[Review Completed (Y/N)]$17:$[Review Completed (Y/N)]$18+0)),VLOOKUP($[Frequency of review]16,$[Payment / Review Periods]$1:$Months$9,2,0)),MIN($[Review due date]$17:$[Review due date]$18))
Many thanks