I have an excel table that a user works in and inputs data.
When the user tabs (Or Clicks) into a particular cell within a Particular Column of that Table I would like for a Userform to Automatically show and if the User Tabs (Or Clicks) away from that column for the Userform to close
Something like (Which doesn't work)
Sub Table_Test()
Dim lo As ListObject
Set lo = SheetTest.ListObjects("tblTest")
If ActiveCell = lo.ListColumns("Product2").DataBodyRange Then
f_Test.Show
Else
Unload Me
End If
End Sub
Is this Possible ? Any Ideas...
When the user tabs (Or Clicks) into a particular cell within a Particular Column of that Table I would like for a Userform to Automatically show and if the User Tabs (Or Clicks) away from that column for the Userform to close
Something like (Which doesn't work)
Sub Table_Test()
Dim lo As ListObject
Set lo = SheetTest.ListObjects("tblTest")
If ActiveCell = lo.ListColumns("Product2").DataBodyRange Then
f_Test.Show
Else
Unload Me
End If
End Sub
Is this Possible ? Any Ideas...