E
Ed
I haven't worked much with arrays, so please forgive me if this is a basic
question. I want to collect a series of text elements to write into a table
all in one go, rather than write to the table one by one as collected. If I
only had a one column table, I would just say
For x = 1 to 10
Table.Cell(x, 1).Text = Array(x)
Next x
But when I've got four columns, how do I say
Table.Cell(x, y).Text = Array(x,y) ??
(I figure that's not the correct way to do it - but it was the closest I
could come to explaining it.)
Any help is appreciated.
Ed
question. I want to collect a series of text elements to write into a table
all in one go, rather than write to the table one by one as collected. If I
only had a one column table, I would just say
For x = 1 to 10
Table.Cell(x, 1).Text = Array(x)
Next x
But when I've got four columns, how do I say
Table.Cell(x, y).Text = Array(x,y) ??
(I figure that's not the correct way to do it - but it was the closest I
could come to explaining it.)
Any help is appreciated.
Ed