Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Not Intersect(Range("A26"), Target) Is Nothing Then
Cancel = True
If Target.Value = "" Then
Target.Value = Range("BB15").Value
Else
Target.Value = ""
End If
End If
End Sub