How do I pull back data from a column (not a vlookup) but must be similar

alethea2022

New Member
Joined
Dec 7, 2022
Messages
11
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
  3. Mobile
  4. Web
I have sheet one - the same will appear multiple times as the below

Ali.mcloughlin@email.comMicrosoft Word
Ali.mcloughlin@email.comMicrosoft Excel
Ali.mcloughlin@email.comMicrosoft Powerpoint

In another sheet I have the email address once

ali.mcloughlin@email.comWhatsappMicrosoft WordMicrosoft ExcelWindows 10Microsoft ExcelMicrosoft Access

I would like a formula in sheet one in column c that says if ali.mcloughlin@email.com appears in sheet 2 and has Microsoft Word in one of the columns bring back yes or Microsoft word

Hope this makes sense as i have a mamouth task, than k you so much
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
One way might be:

Code:
=IFERROR(IF(SUM(--(FILTER(Sheet2!$B$1:$G$11,A2=Sheet2!$A$1:$A$11)=B2)),"Yes",""),"")
 
Upvote 0

Forum statistics

Threads
1,215,326
Messages
6,124,272
Members
449,149
Latest member
mwdbActuary

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