Hi All,
I can't figure the code out to determine for within a sheet the column selected I am on relates to a specific column of a defined table. This is the code I can't get to work:
Any ideas what I need to do? Does this make sense?
I can't figure the code out to determine for within a sheet the column selected I am on relates to a specific column of a defined table. This is the code I can't get to work:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = Range("Table_MWTTDB[Month Due]") Then
MsgBox "test"
End If
End Sub
Any ideas what I need to do? Does this make sense?