I have a workbook that has a sheet the summarizes all of the other sheets. In a couple of columns (4), I need to find a value that matches a unique set of values in another sheet.
All well and good, except I need to match where things are between a range of indexes.
Here's what I'd LIKE to do, but it appears you can't sue >= <= operators in an index match:
=INDEX(Rebates[Group],
MATCH(1,
([@[Product Index]]<=Rebates[End Product Index]) *
([@[Product Index]]>=Rebates[Start Product Index]) *
([@[Scenario Index]]<= Rebates[End Scenario Index]) *
([@[Scenario Index]]>= Rebates[Start Scenario Index]) *
([@[Segment Index]] <= Rebates[End Segment Index])*
([@[Segment Index]] >= Rebates[Start Segment Index]),0))
Is there a way to do this?
Edit: Group will return a string value