Trying to loop through all tables on a worksheet and select column #5 but don't know how.
All I got is:
It does not like the ActiveSheet.ListObjects(tbl).ListColumns(5).Range.Select line because of the ListObject.
All I got is:
Code:
For each tbl in ActiveSheet.ListObjects
ActiveSheet.ListObjects(tbl).ListColumns(5).Range.Select[COLOR=#242729][FONT=Consolas]
[/FONT][/COLOR]next tbl
It does not like the ActiveSheet.ListObjects(tbl).ListColumns(5).Range.Select line because of the ListObject.