Public Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
If Target.Value <> "" Then
clickline = Target.Row
Else: MsgBox "Please click on a filled cell of this line", vbInformation
Exit Sub
End If
Call lineopen(clickline)
End Sub