I have populated a 2 dimensional array in Excel vba and need to add the values to a range in excel and need help in doing this:
What I have so far is:
where vArrayTotals is the array vArrayTotals(1 to 2, 1 to 7)
I want to add the second row from the array to the range, Range("C1:I7")?
How do I do this?
Help appreciated?
regards,
Neemi
What I have so far is:
Code:
.Range("C1:I7").Value = vArrayTotals
where vArrayTotals is the array vArrayTotals(1 to 2, 1 to 7)
I want to add the second row from the array to the range, Range("C1:I7")?
How do I do this?
Help appreciated?
regards,
Neemi