hello to all
I think this should be easy, but I'm missing something.
I have a function that has an Argument (nColumns AS Long).
In the function are two lines that depend on the value of nColumns.
Let's say nColumns = 5. So, I'd like the two lines to look like this...
How can I BUILD these two lines in VBA???
Thanks in advance
Teach314
I think this should be easy, but I'm missing something.
I have a function that has an Argument (nColumns AS Long).
In the function are two lines that depend on the value of nColumns.
Let's say nColumns = 5. So, I'd like the two lines to look like this...
Code:
FldStr = Array("Row", "C1", "C2", "C3", "C4", "C5")
FldWidth = Array(1000, 500, 500, 500, 500, 500)
How can I BUILD these two lines in VBA???
Thanks in advance
Teach314