Need formula for If and Match, I think, for referencing cells in different sheets

Goddess

Board Regular
Joined
Dec 3, 2015
Messages
94
Office Version
  1. 2019
Platform
  1. Windows
Hi!

Basically, I have 3 sheets in one workbook.

Sheet 1 is the data that I will use as a list for data validation.
Sheet 2 is a list of questionnaire, where we will score them based on the replies
Sheet 3 is the scoring page, where the final score will be tabulated

1634871910135.png


1634871942741.png


1634871995498.png


Based on my example above, Sheet 1 will have the scores manually keyed in for each person. On Sheet 2 (B1), I will select the list of names using data validation, referring back to Sheet 1 (B2:B12).

Finally, on Sheet 3, it will automatically shows that Mike's score is 3, Excellent (A2:B2) based on his result in Sheet 1, which is 90. I need the formula for Sheet 3, A2 and B2.

Thanks!
Irene
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
After add Data validation, Try this at Sheet3:
Book1
ABC
1Score
23Excellent
3
Sheet3
Cell Formulas
RangeFormula
A2A2=LOOKUP(INDEX(Sheet1!$C$2:$C$12,MATCH(Sheet2!$B1,Sheet1!$B$2:$B$12,FALSE)),{0,69,80},{1,2,3})
B2B2=CHOOSE(A2,"Poor","Good","Excellent")
 
Upvote 0
Solution
After add Data validation, Try this at Sheet3:
Book1
ABC
1Score
23Excellent
3
Sheet3
Cell Formulas
RangeFormula
A2A2=LOOKUP(INDEX(Sheet1!$C$2:$C$12,MATCH(Sheet2!$B1,Sheet1!$B$2:$B$12,FALSE)),{0,69,80},{1,2,3})
B2B2=CHOOSE(A2,"Poor","Good","Excellent")
Hi Maabadi,

Thanks! Both formula works!

By the way, for Sheet 3 formula for B2, if I want to base on the scoring of <69, 70-79 & >80, what's the formula to use? I can't figure out the '70-79' when using the IFS formula.

Thanks again!
 
Upvote 0
I don't understand what you want do exactly. when your Score is between 70-79, you get 2 at A2 and Good at B2. What else you want?
Please give example & Desired Result.
 
Upvote 0
I don't understand what you want do exactly. when your Score is between 70-79, you get 2 at A2 and Good at B2. What else you want?
Please give example & Desired Result.
Hey!

I got it figured out already. Thanks!
 
Upvote 0

Forum statistics

Threads
1,214,391
Messages
6,119,247
Members
448,879
Latest member
oksanana

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