Answers for "vba table header name"

VBA
0

vba table header name

Dim tb As ListObject
'assumes Table is the first one on the ActiveSheet
Set tb = ActiveSheet.ListObjects(1)
MsgBox tb.DataBodyRange.Cells(2, tb.ListColumns("header4").Index)
Posted by: Guest on May-12-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language