New at this
Trying to add cells to the code below (adds 1 with click). I need to add cells B1, C1, D1, E1, F1, G1 etc.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$A$1" Then
Target.Value = Target.Value + 1
End If
End Sub
Trying to add cells to the code below (adds 1 with click). I need to add cells B1, C1, D1, E1, F1, G1 etc.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$A$1" Then
Target.Value = Target.Value + 1
End If
End Sub