Hello Everyone -

I have a Table called tbl_Names that starts on Row 3 on a worksheet.

One of the table columns is Last_Name and is on the worksheet column "C"

Is there a vba solution which I could use to determine that "Last Name" is column "C"?

My current code example is
Range( "C" & ActiveCell.Row).Value
My problem is that if I add or delete a column in the Table, the reference to column "C" could change, requiring me to go back and put in the new column.

VBA code to get the current column by using the table column heading to replace "C" would really help me.
Range( Some VBA CODE & Active.Cell.Row).Value
Thanks for your assistance.