Option Explicit
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Target.Count = 1 And Not Application.Intersect(Target, Range("A1:A20")) Is Nothing Then
Cancel = True
If Target.Value = vbNullString Then
Target.Value = "R"
Else
Target.ClearContents
End If
End If
End Sub
I would like to be able to put a check mark in say cells A1-A10 and C1-C10 <!-- / message -->
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Application.Intersect(Target, Range("A1:A10")) Is Nothing _
Or Not Application.Intersect(Target, Range("C1:C10")) Is Nothing Then
Target.Font.Name = "Marlett"
Target.Value = "a"
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Application.Intersect(Target, Range("A1:A10")) Is Nothing _
Or Not Application.Intersect(Target, Range("C1:C10")) Is Nothing Then
Target.Font.Name = "Marlett"
Target.Value = "a"
Else
Target.ClearContents
End If
End Sub
Here's a bunch of ideas...Font windings2 and the Capital P is checkmark that is a little bigger.
Can you format those cells for windings2 and just type a Capital P, or Marlett and small a, or will something else go in the cells.