highlight cell based on coordinates in another sheet

jnwilson

New Member
Joined
May 18, 2020
Messages
6
Office Version
  1. 365
Platform
  1. Windows
Hello,

in my workbook i have 3 sheets, 2 contain data (Sheet 1 and Sheet 2) and another references specific cells on those 2 data sheets.

the reference sheet looks like this
highlight cell.jpg


is there a way (prefereably without VBA) that i can highlight the cells in the data sheets (sheet 1 and 2) that are specified here in the reference sheet?
I need it to be dynamic too, as the sheets and cells will change each time i run this report.

Thank you in advance.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
You could set up a Conditional Formatting rule like this:

Book1
ABCD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A1:R30Expression=COUNTIFS(Sheet3!$A$2:$A$100,"Sheet1",Sheet3!$B$2:$B$100,ADDRESS(ROW(),COLUMN(),4))textNO


Select the total range that might be highlighted, then apply the formula as shown. Sheet2 would have a similar rule.

I notice that you have the filtering symbol on your display. Do you only want to highlight the filtered rows? If so that would be trickier.
 
Upvote 0
Solution
No, I was filtering just for the screenshot. This works great!! thank you so much :)
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,198
Members
449,072
Latest member
DW Draft

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