Hello forum goers,
I am trying to create an array of arrays (list of lists...etc.) that can represent the cells on a worksheet. Basically I want to be able to store some metadata for each cell i.e. flags telling you if the cell is editable, if it is empty, etc...
What i'm really trying to do is create a more advanced spreadsheet where each "Cell" is essentially a list.
Is there some way to do something like this?:
I also want the columns to contain a list as well so I can have multiple flags in one "cell"![]()
Please Login or Register to view this content.
For example the list in one cell could be:
(1,0) is editable? yes. is empty? No.
Let me know if you need more clarification.
Thanks,
Publius
Edit: Ok I thought of a good way to handle the multiple flags in one cell problem.
I can just fill each slot with seperate class objects. So i'll make a Cell Class module with all of the booleans i need.
My question still stands for the list of list needed to store these cells.
Bookmarks