Hello Max57,
Here is the working code for the DoubleClick macro...
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Dim Rng1 As Range
Set Rng1 = Range("DBlClick")
If Intersect(Target, Rng1) Is Nothing Then
Cancel = True
Exit Sub
End If
'Cells that have formulas are not considered empty. This counts the cells filled in by the user
If WorksheetFunction.CountA(Cells(Target.Row, "B").Resize(1, 4)) = 0 Then
MsgBox "You must fill in the row before seeing this form"
Cancel = True
Exit Sub
End If
frm_EditPricing.Show
End Sub
Bookmarks