Hello, I need some guidance on executing this formula. Essentially if there is no match on the 2020 Contracting increases schedule we then return a value on the trigger tab, if there is a match on the 2020 tab but there is no value it should search for the match on the 2019 contracting increases schedule, then if there is a match in 2019 but the match = 0 it will return the value in the trigger tab.
This formula below is my failed attempt. Suggestions?
IFERROR(IF(INDEX('2020 CONTRACTING INCREASES '!$G$4:$G$65,MATCH($A18,'2020 CONTRACTING INCREASES '!$A$4:$A$65,0))=0,'TRIGGER - INTERNAL ONLY'!$J$14,index('2019 CONTRACTING INCREASES'!$G$4:$G$65,match('SB_Inpatient-2020'!$A18,'2019 CONTRACTING INCREASES'!$A$4:$A$65,0))=0,'TRIGGER - INTERNAL ONLY'!$J$14)))
This formula below is my failed attempt. Suggestions?
IFERROR(IF(INDEX('2020 CONTRACTING INCREASES '!$G$4:$G$65,MATCH($A18,'2020 CONTRACTING INCREASES '!$A$4:$A$65,0))=0,'TRIGGER - INTERNAL ONLY'!$J$14,index('2019 CONTRACTING INCREASES'!$G$4:$G$65,match('SB_Inpatient-2020'!$A18,'2019 CONTRACTING INCREASES'!$A$4:$A$65,0))=0,'TRIGGER - INTERNAL ONLY'!$J$14)))