Vlookup Help - Yes and No

djmnon

New Member
Joined
Mar 22, 2022
Messages
19
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
  5. 2013
  6. 2010
  7. 2007
Platform
  1. Windows
I have created a Vlookup formula on one of the columns on a workbook. This Vlookup will look for part numbers on the other Workbook and paste the ones that are matching and others that are not matching will showup as NA

I want to change this formula in a way that. Anything that Matches should be tagged as Yes and Anything else will be No. How can I change this formula

=VLOOKUP(B2,'CDM MyPart List 31Mar2022.xlsx'!Table2[#All],1,FALSE)

Please help

1649234950232.png
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
How about
Excel Formula:
=IF(ISNA(VLOOKUP(B2,'CDM MyPart List 31Mar2022.xlsx'!Table2[#All],1,FALSE)),"No","Yes")
 
Upvote 0
Try this:

=IF(SUMPRODUCT(--(B2='CDM MyPart List 31Mar2022.xlsx'!Table2[#All])),"Yes","No")

or:

=IF(COUNTIF('CDM MyPart List 31Mar2022.xlsx'!Table2[#All],B2),"Yes","No")

.
 
Upvote 0
Try this:

=IF(SUMPRODUCT(--(B2='CDM MyPart List 31Mar2022.xlsx'!Table2[#All])),"Yes","No")

or:

=IF(COUNTIF('CDM MyPart List 31Mar2022.xlsx'!Table2[#All],B2),"Yes","No")

.
Superb...Thanks a ton
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,039
Messages
6,122,799
Members
449,095
Latest member
m_smith_solihull

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