Hi,
I have the array formula below that is working correctly.
=IFERROR(INDEX('Roadmap'!$H:$H,MATCH(1,($A$3='Roadmap'!$D:$D)*(C$3='Roadmap'!$E:$E),0))&"","No Content Found")
What I need to do is add one additional lookup criteria that I can't quite figure out.
On the Roadmap tab there Column B = Start date and Column C = End Date.
The formula needs to look at the date in Cell B1 and find the row where the date is equal to or between Roadmaps column B & C.
I tried the below but it doesn't work. HELP!!!
=IFERROR(INDEX('Roadmap'!$H:$H,MATCH(1,($A$3='Roadmap'!$D:$D)*(C$3='Roadmap'!$E:$E)*(AND(B1>='Roadmap'!B:B,B1<='Roadmap'!C:C)),0))&"","No Content Found")
I have the array formula below that is working correctly.
=IFERROR(INDEX('Roadmap'!$H:$H,MATCH(1,($A$3='Roadmap'!$D:$D)*(C$3='Roadmap'!$E:$E),0))&"","No Content Found")
What I need to do is add one additional lookup criteria that I can't quite figure out.
On the Roadmap tab there Column B = Start date and Column C = End Date.
The formula needs to look at the date in Cell B1 and find the row where the date is equal to or between Roadmaps column B & C.
I tried the below but it doesn't work. HELP!!!
=IFERROR(INDEX('Roadmap'!$H:$H,MATCH(1,($A$3='Roadmap'!$D:$D)*(C$3='Roadmap'!$E:$E)*(AND(B1>='Roadmap'!B:B,B1<='Roadmap'!C:C)),0))&"","No Content Found")