How do I autofill cell colour based on other cells' colour in Excel?

Copper Contributor

I have created a spreadsheet that has multiple cells that go red based on conditional formatting. I have another sheet that has hyperlink cells to the other sheets, can I get these hyperlink cells to go green if all cells on that sheet are green then red if any of the cells on the hyperlinked sheet is red

 

i've tried various things to get cells to change colour

 

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

Me.Range("B3").Interior.Color = Me.Range("A1").DisplayFormat.Interior.Color

End Sub

 

this works on the same sheet but as soon as you introduce multiple cells it turns black

 

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

Me.Range("B4").Interior.Color = Me.Range("A1:B1:C1").DisplayFormat.Interior.Color

End Sub

 

or cells from another sheet it fails error code 1004

 

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

Me.Range("B4").Interior.Color = Me.Range("Greenbrook!$C$3").DisplayFormat.Interior.Color

End Sub

 

I tried this across sheet, this is for a single cell, I'm hoping to be able to look at all cells on the said sheet and show red if any cell on the other sheet are red

0 Replies