Looking up value in array data-set

goldbeck09

New Member
Joined
Aug 21, 2014
Messages
22
Hi All,

I am looking for a formula that will look-up a value from column 1 workbook1, from a data table workbook2 (no headers) 30 columns, and 250 rows.

So, I have 1 workbook with 1 column of data and I am looking up to see if that value exists on another workbook sheet.

Data to look-up for existence workbook 1:

1
12
123
1234
12345
123456

Here is what my data-set looks like workbook 2:

1 123 12345
12 1234 123456
22 3462 34672


Obviously Vlookup won't work...i've tried Index Match formulas... Not sure how else to find the existence in the 2nd workbook.
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Guess you could you the count.if function

Code:
=IF(COUNTIF(lookuptable,your criteria)>0,"Exists","")
 
Upvote 0
I definitely did not consider the avenue of countif...it works though.. Thank you very much. I was making this task way too complex.
 
Upvote 0

Forum statistics

Threads
1,203,565
Messages
6,056,102
Members
444,846
Latest member
pbailey

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