I am using a value posted in a column of my sheet using other formulas; say that value = L4, L5, or L6 (levels of approvers), search a reference sheet for a specific related column and return the email for the person.
I have a more basic function working with standard Index/Match function but adding in the element of if specific column = L4, L5, or L6 keeps coming up unparseable.
Current failing formula:
=IF([Finance Approver Level Hidden Fx]@row, "L4", INDEX({Finance/Legal Matrix Range 1},MATCH([Requester Business Unit]@row,{Finance/Legal Matrix Range 4}), 0)) IF([Finance Approver Level Hidden Fx]@row, "L5", INDEX({Finance/Legal Matrix Range 2}, MATCH([Requester Business Unit]@row,{Finance/Legal Matrix Range 4}), 0)) IF([Finance Approver Level Hidden Fx]@row, "L6", INDEX({Finance/Legal Matrix Range 3}, MATCH([Requester Business Unit]@row),{Finance/Legal Matrix Range 4}, 0))
IF Finance Approver Level Hidden Fx]@row = L4 then search {Finance/Legal Matrix Range 1} for Business Unit from current sheet
If Finance Approver Level Hidden Fx]@row = L5 then search {Finance/Legal Matrix Range 2} for Business Unit from current sheet
If Finance Approver Level Hidden Fx]@row = L6 then search {Finance/Legal Matrix Range 3} for Business Unit from current sheet