Hi all,
First question in the forum. I'm in need of help with an INDEX(MATCH( formula that I've been using but now need to make conditional on another column. Essentially, I only want the INDEX(MATCH( formula to return a value when a column "Completion" is changed to "100%". I've tried nesting the existing INDEX(MATCH formula into an IF statement but I'm getting an INVALID OPERATION message.
Original formula =INDEX({LibertyStart}, MATCH(PA$3, {LibertyMilestones}, 0))
Attempt to make it conditional =IF({LibertyCompletion}="100%",INDEX({LibertyStart}, MATCH(PA$3, {LibertyTask}, 0)),0)
The intent is to return a start date from column "Start" for a specific task, defined by PA$3, from column "Task" when the column "Completion" is changed to "100%".
I'm in a data collection sheet, referencing a source sheet.
I would greatly appreciate any assistance/suggestions!