Formula to reference data between 2 excel sheets

jtmbell

New Member
Joined
Nov 12, 2014
Messages
16
I have a very large spreadsheet with multiple sheets (all named differently). I have a master list (Master) and a new sheet each day (saved as the date - 3.5.18). I am needing a formula to input into the daily sheet that will tell me if the number listed in column A is also listed on the master sheet.
Example:

Master sheet -
Column A has 100 rows of item numbers

Daily sheet - 3.5.18
Column A has 200 rows of item numbers.

If the item number from the daily sheet is on the master sheet I need an X or a 1 in column DK.


All help is GREATLY Appreciated!
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
For the item in cell A2 of your Daily sheet, place this formula in cell DK2:
Code:
=IF(COUNTIF(Master!A:A,A2)>0,"X","")
and copy down for all rows.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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