Think I am getting it now.

My goal with this is to get some user input ex: Your Name
Then present them with a set of options that will be associated to each person that entered their name.

The that I am reading it now is to build an array with each of the "names" as my columns, and then assign the options to a new row. So that it would look something like this

$Array[0] = "Name1","Name2","Name3" etc...
$Array[1] = 0, 3, 4 etc...
$Array[2] = "C","F","J" etc...

Then when I need to find what option Name3 picked I would

$ = $Array[2][2][1]

and would get Name3 4 F

So in closing (I hope) My First DIM statement is the number Rows that I need.

After that Each [] that I add to the end of $ARRAY[] references the Row that I am reading from. I.E.

$Array[0][1][2][3][4][5] =
Row 0 1 2 3 4 5 etc...

The Columns will be defined by the data that is entered into each row.

Then as I gather the options selected by the user I would do a
$Array[2] = $Array[2] + $Option
to add another column to this array element

If this is all correct my last question would be can you have unequal columns in each row?
_________________________
Today is the tomorrow you worried about yesterday.