I need to populate the low range based on a match to a specific specialty and tier. The specialty is just a drop down but the Tier was based on the following IF formula:
=IF([Points Total]11 <= 15, 3, IF([Points Total]11 >= 16, 2, IF([Points Total]11 <= 45, 2, IF([Points Total]11 >= 46, 1))))
- Question 1: Should " " around the tiers?
- Question 2: Should I use Index Match or Lookup to populate the Low Range?
- Question 3: Depending on which one is the right one to use, please look at the formulas below. What do I need to fix?
1. Here is the index Match but it doesn't work: error is "# invalid Data Type"
- =INDEX($[Consultant City]1:$[Consultant City]7, MATCH([Consultant Specialty]11, $[Consultant First name]1:$[Consultant First name]7, AND(MATCH(Tier11, [Consultant last name]1:[Consultant last name]7, 0))))
2. Here is the LOOKUP but it doesn't work: error is "unparseable"
- =LOOKUP([Consultant Specialty]12, [Consultant First name]1:[Consultant State]7 AND( LOOKUP(Tier12, [Consultant First name]1:[Consultant State]7, 3,false
