Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
If Target.Count > 1 Then Exit Sub
If Target.Column <> 20 Or Target.Row < 9 Then Exit Sub
Set olApp = CreateObject("Outlook.application")
Set m = olApp.CreateItem(olMailItem)
With m
.Subject = [D20]
.Body = [G20]
.Recipients.Add Target.Offset(, -1)
' .display
.Send
End With
End Sub