Hello,
I'm trying to do a code for multiple cells, but have the cell values change individually. For instance, when I double click on one cell I do not want the others to increase as well. When I do (A3, B3, C3, E3, F3) all the cells increase by one if I double click an individual cell (which I don't want to happen). If I do (A3:F3), none of the cells will increase, as if I broke the code the code I'm using is below. I'm wondering if there is a faster way to do all the cells I want versus having to copy this code 100+ times for each individual cell...

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    On Error Resume Next
    If Not Intersect(Target, Range("F3")) Is Nothing Then
      Range("F3").Value = Range("F3").Value + 1
      Cancel = True
    End If
End Sub