Something like this should work.
VB:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Excel.Range, Cancel As Boolean)
Dim rng1 As Range, rng2 As Range
Dim Value1 As Variant, Value2 As Variant
Dim Font1 As Variant, Font2 As Variant
Set rng1 = Range("12:1500"): Value1 = "a": Font1 = "Marlett"
Set rng2 = Range("E2:E500"): Value2 = "$12": Font2 = Target.Font.Name
If Not Application.Intersect(Target, rng1) Is Nothing Then
With Target
.Font.Name = Font1
.Value = Value1
End With
Cancel = True
End If
If Not Application.Intersect(Target, rng2) Is Nothing Then
With Target
.Font.Name = Font2
.Value = Value2
End With
Cancel = True
End If
End Sub
Bookmarks