From: Brian on
Hello all I am looking for the best way to generate a report that is
based off data that needs to have dynamic columns but static rows. I
was told use a matrix just wanted to know if this is correct and any
good examples out there.. TIA
From: OmegaSquared on
Hello, Brian,

My guess is that a simple 2-dimensional matrix will not be ideal for your
requirement. But a 1-dimensional array can contain other 1-dimensional
arrays as its elements, a "ragged" array might be what you want.

But it is possible that the ideal solution will be some other type - perhaps
a custom class. If you can provide more details about your requirement
someone may be able to offer better ideas.

Cheers,
Randy