Lookup of a value on multiple sheets?

Insomnia81

New Member
Joined
Dec 16, 2015
Messages
5
I can figure this out with 1 sheet, but I’m at a complete loss with an OR function.

So I have a Name in Cell A1 on Sheet1. I want to see if that Name is in column A on Sheet2 or Sheet3 and return the text “Sheet2” if it’s on Sheet2 or the text “Sheet3” if found on Sheet3.

Thanks!
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Try
Code:
=IF(NOT(ISNA(VLOOKUP(A1,Sheet2!A1:A18,1,0))),"Sheet2",IF(NOT(ISNA(VLOOKUP(A1,Sheet3!A1:A18,1,0))),"Sheet3","not on Sheet2 or Sheet3"))
 
Upvote 0
Here's one way

=LOOKUP(NOT(ISNA(MATCH(A1,Sheet2!A1:A1000,0)))+NOT(ISNA(MATCH(A1,Sheet3!A1:A1000,0)))*2,{0,1,2,3},{"Not Found","Sheet 2", "Sheet 3", "Sheets 2 and 3"})
 
Last edited:
Upvote 0

Forum statistics

Threads
1,225,757
Messages
6,186,850
Members
453,379
Latest member
gabriellegonzalez

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