Blocking cells that correspond to data in another tab

Aestas

New Member
Joined
Jul 6, 2017
Messages
5
I have 2 tabs, there is data in one tab but only 2 columns that matter - "Primary Consumer" which is a list of 14 clients, and "Publication Date" which is the last time we sent them a communication. I have been asked to create a separate tab calendar visual that automatically populates when we put a date in the Publication Date column in the data tab. So I have dates across the top row and consumer names listed down the first column. If I enter a date of June 28th in the data sheet, I want it to put an X in the cell on the calendar tab that corresponds to that date and consumer. I hope I'm explaining myself ok. I included a screencap of the calendar visual tab I currently have and I have manually entered a few X's to demonstrate what I'd like.

Open to different options, just need a good visual that'll continually update as we put in more dates to show the executives so they are not just seeing a bunch of data in an excel sheet.
 

Attachments

  • Capture.JPG
    Capture.JPG
    55.7 KB · Views: 5

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
how about something like
=IF(COUNTIFS(Sheet2!$A$3:$A$17,Sheet1!$A5,Sheet2!$B$3:$B$17,Sheet1!B$3)=1,"X","")

where Sheet2 - has a list of clients and dates

then sheet1 is laid out roughly as you show - difficult to follow images

Book3
AB
1
2
3client16/28/23
4client26/30/23
5client37/2/23
6client47/4/23
7client57/6/23
8client17/6/23
9client27/5/23
10client37/4/23
11client47/3/23
12client57/2/23
13client17/1/23
14client26/28/23
15client36/29/23
16client46/28/23
17client56/27/23
Sheet2


Book3
ABCDEFGHIJKLM
1
2
36/26/236/27/236/28/236/29/236/30/237/1/237/2/237/3/237/4/237/5/237/6/237/7/23
4
5client1  X  X    X 
6client2  X X    X  
7client3   X  X X   
8client4  X    XX   
9client5 X    X   X 
10client6            
11client7            
12client8            
13client9            
14client10            
15client11            
16client12            
17client13            
18client14            
19client15            
20
Sheet1
Cell Formulas
RangeFormula
B5:M19B5=IF(COUNTIFS(Sheet2!$A$3:$A$17,Sheet1!$A5,Sheet2!$B$3:$B$17,Sheet1!B$3)=1,"X","")



i have added to dropbox - but only for a few days before i delete
 
Upvote 1
Solution
how about something like
=IF(COUNTIFS(Sheet2!$A$3:$A$17,Sheet1!$A5,Sheet2!$B$3:$B$17,Sheet1!B$3)=1,"X","")

where Sheet2 - has a list of clients and dates

then sheet1 is laid out roughly as you show - difficult to follow images

Book3
AB
1
2
3client16/28/23
4client26/30/23
5client37/2/23
6client47/4/23
7client57/6/23
8client17/6/23
9client27/5/23
10client37/4/23
11client47/3/23
12client57/2/23
13client17/1/23
14client26/28/23
15client36/29/23
16client46/28/23
17client56/27/23
Sheet2


Book3
ABCDEFGHIJKLM
1
2
36/26/236/27/236/28/236/29/236/30/237/1/237/2/237/3/237/4/237/5/237/6/237/7/23
4
5client1  X  X    X 
6client2  X X    X  
7client3   X  X X   
8client4  X    XX   
9client5 X    X   X 
10client6            
11client7            
12client8            
13client9            
14client10            
15client11            
16client12            
17client13            
18client14            
19client15            
20
Sheet1
Cell Formulas
RangeFormula
B5:M19B5=IF(COUNTIFS(Sheet2!$A$3:$A$17,Sheet1!$A5,Sheet2!$B$3:$B$17,Sheet1!B$3)=1,"X","")



i have added to dropbox - but only for a few days before i delete
This worked perfectly, thank you!!
 
Upvote 0

Forum statistics

Threads
1,215,079
Messages
6,122,998
Members
449,092
Latest member
masterms

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