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

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

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

unit testing - How to mock PreferenceManager in Android? -