It's a good thing the message board doesn't charge by the question. Here's another question. I have this procedure that makes an array and includes the statements
colcount = Column_input.Rows.Count - 1
by the way column_input is a range
redim array1(colcount)
newfunction(array1)
etc.
Then in the new function I have
function newfunction(array1)
by the way
newfunction(array1())
didn't work
anyway, I try to make this
array1(2) = 5
but I get subscript out of range error
But, when I go array1(2,1)=5
All is well in the world.
Why would excel voluntarily make these redimming decisions so vicariously that I must personify my computer?
colcount = Column_input.Rows.Count - 1
by the way column_input is a range
redim array1(colcount)
newfunction(array1)
etc.
Then in the new function I have
function newfunction(array1)
by the way
newfunction(array1())
didn't work
anyway, I try to make this
array1(2) = 5
but I get subscript out of range error
But, when I go array1(2,1)=5
All is well in the world.
Why would excel voluntarily make these redimming decisions so vicariously that I must personify my computer?