Perhaps...Code in sheet1.module
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rng As Range
Set rng = Sheet2.Range("B2")
If Not Intersect(Target, Range("H3,H10,H16,H24,H32,P3,P10,P21,P30,P38")) Is Nothing Then
Application.EnableEvents = False
If Target = "x" Then
Select Case Target.Address
Case "$H$3"
rng = "1"
Case "$H$10"
rng = "2"
Case "$H$16"
rng = "3"
Case "$H$24"
rng = "4"
Case "$H$32"
rng = "5"
Case "$P$3"
rng = "6"
Case "$P$10"
rng = "7"
Case "$P$21"
rng = "8"
Case "$P$30"
rng = "9"
Case "$P$38"
rng = "10"
End Select
End If
Application.EnableEvents = True
End If
End Sub
Bookmarks