J Jock Nov 16, 2009 #1 Is it possible to remove CF (there's only 1 condition) from a cell using the Before Doubleclick() event? Thanks,
Is it possible to remove CF (there's only 1 condition) from a cell using the Before Doubleclick() event? Thanks,
K Khuli Nov 16, 2009 #2 Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Target.FormatConditions.Delete End Sub
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Target.FormatConditions.Delete End Sub
J Jacob Skaria Nov 16, 2009 #3 Try the below Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Target.FormatConditions.Delete Cancel = True End Sub If this post helps click Yes
Try the below Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Target.FormatConditions.Delete Cancel = True End Sub If this post helps click Yes