I would like to create a macro which go through all table of my worksheet and for each of them, create an array with the same name as the table and populate the array with value from the table. I started with this:
Dim tbl as ListObject
For Each tbl In Worksheets(Brand).ListObjects
But I don't see how can I proceed to create a array with my tbl.Name as name of array? is it possible?
tbl[x][y]wherexis the table's index andyare the actual datarows for each and every table. Has the same functionality as naming separate ids and is actually easier to work with