Can you reference a cell, then return a value from a different cell, based on the first cell's specific text?

Dais Helper

New Member
Joined
Jun 11, 2020
Messages
11
Office Version
  1. 365
Platform
  1. Windows
Hello,
I'm managing our graduation roster. I have columns A through AQ in use for various data; and currently using rows up to 253.
Column A: Invite Status (this is where I input yes, no, tentative, etc. via a dropdown)
Column Q: Major (lists their major )
Column AQ: Attending Majors (this is where I want results to go)

If I have one of these answers in Column A for a graduate the in a row __:
YES - Survey
YES - Phone or Email
YES - In Person
Tentative YES - Survey

I want column AQ to show the appropriate Major (taken from Column Q) associated with the graduate who's planning to attend the graduation ceremony.

Is it possible that there is a formula that can be used in Column AQ to get this result in AQ? Or use any columns at/beyond AR to assist...

I don't understand formulas or VBA, but I can usually follow directions if written for the novice. :)

Unfortunately our IT department seems to have blocked the ability for the xl2bb add-in. I sort of recreated it below on how I'd like it to look...

A​
...
Q​
...
AQ​
Invite Statushidden columnsMajorhidden columnsAttending Majors
(any of the Yes responses above)---Bachelor of Science in Dietetics & Nutrition --Bachelor of Science in Dietetics & Nutrition
(any other text or blank entries)---
Masters in Psychology
--

Thank you in advance.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
try this
Book1
AQAQ
1invite statusMajorAttending Majors
2yesMarjor 1Marjor 1
3noMarjor 1 
4yes - surveyMarjor 2Marjor 2
5Marjor 2 
Sheet1
Cell Formulas
RangeFormula
AQ2:AQ5AQ2=IF(COUNTIF(A2,"*yes*"),Q2,"")
 
Upvote 0
Solution
Try something like this in AQ:

=IF(OR(A2="Survey",A2="Phone or Email",A2="In Person", A2="Tentative"),Q2,"")
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,259
Members
449,075
Latest member
staticfluids

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