NewbiDoobie
Technical User
I am not sure if there is a way to do this in excel, but if a user double clicks on a cell in a specific column, can I have the value of that cell passed to a macro to autofill another group of cells based on that value?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
MySub Target.Value
End Sub
Sub MySub(ByVal vIn As Variant)
MsgBox "vIn = " & vIn
End Sub