Good evening SSA_111
Welcome to the forum!
What's wrong with football stats?
OK, two sheets, Sheet1 and Sheet2. the code below will check the corresponding cell of Sheet2 when you click on a cell in Sheet1. Won't do the whole project for you but it should give you a shove in the right direction.
BTW, it's based on event procedures so you need to put it in the code module for Sheet1, not a regular module :
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Sheets("Sheet2").Range(ActiveCell.Address).Value = 1 Then
ActiveCell.Interior.ColorIndex = 6
End If
End Sub
HTH
DominicB
Bookmarks