excel - vba: multi-dimensional arrays REDIM -
i have array:
dim qcno(4, 2, 350) string
the problem have there requirement matrix bigger. need 350 go 1000.
is possible redim preserve
on 3 dimensional array?
if so, how it?
preserve maintain existing values.
dim qcno() string redim qcno(4,2,350) string redim preserve qcno(4, 2, 1000) string
Comments
Post a Comment