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

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
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,548
Messages
6,125,472
Members
449,231
Latest member
Sham Yousaf

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