PDA

View Full Version

: Any Excel gurus can help me


FerrariEnzo
10-20-2017, 07:58 AM
Basically what I'm trying to do is on the first spreadsheet I need a "Yes" in the column under Eligible for Superstar. There is a bunch of names that I need to cross reference with the second spreadsheet. So if the names are on the second spreadsheet, then yes for Superstar, if no, then no..

Is this possible? It's on the same workbook

http://i.imgur.com/ejX1R3o.jpg

http://i.imgur.com/llzoryo.jpg


Thanks

FN-2199
10-20-2017, 08:11 AM
So what you want is if the second sheet matches the names in the first sheet, insert the text, "yes" for superstar?

6o4__boi
10-20-2017, 08:15 AM
https://www.mrexcel.com/forum/excel-questions/407539-vlookup-return-yes-no-values.html

or hlookup if the values you're cross referencing are in a row

FN-2199
10-20-2017, 08:44 AM
https://www.mrexcel.com/forum/excel-questions/407539-vlookup-return-yes-no-values.html

or hlookup if the values you're cross referencing are in a row

That link is your answer!

From the screencap you gave us, it would look like this:

=IF(ISNUMBER(MATCH(Cell number,Range you want to cross reference,0)),"Yes","No")

Plug this into your "eligible superstar" cells and it will return the values.

FerrariEnzo
10-20-2017, 09:37 AM
I tried it using values on the same spreadsheet but got an error

http://i.imgur.com/J8fMZnO.jpg

FN-2199
10-20-2017, 10:52 AM
I tried it using values on the same spreadsheet but got an error

http://i.imgur.com/J8fMZnO.jpg

Sorry, remove the quotations from the first part formula but leave quotations for "yes" and "no". add a $ in front of the letter ($A3) to lock in the column, then drag the formatting down your superstar list

FerrariEnzo
10-20-2017, 11:15 AM
It's all good... I got help from mrexcel forum using macro...

Thanks