Way to verify if a VLOOKUP lookup_value has multiple potential returns?

ReggaeYT

New Member
Joined
Jul 24, 2014
Messages
16
I feel like there's an easy way to do this, but I'm drawing a blank.

Do I need to construct a macro or is there a formula option I'm missing?

Thanks in advance!
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
You could use COUNTIF to count how many times the value you are looking up appears in the lookup column.
 
Upvote 0
You could use COUNTIF to count how many times the value you are looking up appears in the lookup column.

I do know that the lookup_value appears more than once, but what I want to know is if the return_value is always the same. Its about 120,000 lines.
 
Upvote 0
You could use the returned value from the VLOOKUP for the criteria of the COUNTIF.

=COUNTIF(Sheet2!B1:B10, VLOOKUP(A2, Sheet2!A1:B10,2,0))
 
Upvote 0

Forum statistics

Threads
1,214,793
Messages
6,121,614
Members
449,039
Latest member
Mbone Mathonsi

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