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

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -