Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
'Updateby20171226
If Not Application.Intersect(Target, Range("B:B")) Is Nothing Then
Cancel = True
' TxtBoxFUZEProjectID.Text = Cells()
UserForm1.Show
End If
End Sub
What do I do here?
In my UserForm1 I have a textbox named
TxtBoxFUZEProjectID
That I want to populate with the value (Text) of the cell in the worksheet I double clicked.
View Code, paste the code