Match multiple values

AmiExcel

New Member
Joined
Feb 11, 2022
Messages
3
Office Version
  1. 2019
Platform
  1. Windows
Hi, wondering if anyone could help?

I am trying to find a formula which can tell me if the numbers in that cell match another number - but for a range of numbers.

To explain further, here is some data:

Scores

Satisfaction
Work
4​
Relationships
3​
Friendships
8​
Hobbies
1​

Score interpretations
SatisfactionWorkRelationshipsFriendshipsHobbies
High
Mid
Low

Key
High7 to 8
Mid4 to 6
Low1 to 3

I was wondering what formula I would have to use in the score interpretation table which will allow me to determine which level of satisfaction is true for each domain. I can use =AND(EXACT(()) for single match values but for this data multiple values mean high (7,8), mid (4,5,6) and low (1,2,3).

I hope this makes sense! Let me know if you have any questions

Also, I am using excel 2019
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
high =AND(A2>=7,A2<=8)
mid =AND(A2>=4,A2<=6)
low =AND(A2>=1,A2<=3)
 
Upvote 0
Solution
Satisfaction
Work4
Relationships3
Friendships8
Hobbies1
Score interpretations
SatisfactionWorkRelationshipsFriendshipsHobbies
HighHigh
MidMid
LowLowLow

Formula in B9, assuming the 1st table in range A2:B5:

Excel Formula:
=IF(VLOOKUP(VLOOKUP(B$8,$A$2:$B$5,2,0),{7,"High";8,"High";4,"Mid";5,"Mid";6,"Mid";1,"Low";2,"Low";3,"Low"},2,0)=$A9,VLOOKUP(VLOOKUP(B$8,$A$2:$B$5,2,0),{7,"High";8,"High";4,"Mid";5,"Mid";6,"Mid";1,"Low";2,"Low";3,"Low"},2,0),"")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,664
Members
448,976
Latest member
sweeberry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top