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

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
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
You are welcome!:)
 
Upvote 0

Forum statistics

Threads
1,215,374
Messages
6,124,574
Members
449,173
Latest member
Kon123

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