Hi All,

I have defined an Array in global with 2 Dimension.

However, I'm getting error message "Subscription out of range"

I did a search from internet I found there is not allowed to preserve the multi dimension array unless the row is fixed.

Example,

Dim MultiDimension() as string

redim preserve MultiDimension (0,1) --> "ALLOWED"
redim preserve MultiDimension (0,2) --> "ALLOWED"
redim preserve MultiDimension (1,2) --> "not ALLOWED"

Anyone here have resolution to overcome my problem?

Mind to share it? Thank you very much.