I got a problem from my work.
I have to read data from a sheet and save it to lists. I thought about a loop, because it have to be dynamic lists, because I don't want to lose the data in the next loop.
Firstly, I count the number of Sheet's column, and secondly, the rows of the indexer column. For example: for i=1 to maxHorizont 'horizontal for j =1 to maxVertic 'vertical
readColumn would be the fix part of the name and I want to add the 'i' (indexer) to it.
The result would be this: DIM readColumn1 as Object, DIM readColumn2 as Object, DIM readColumn3 as Object, . . .
Could you have an ide to fix my problem?