TheFIDDLER
Jan 31st, 2004, 06:40 PM
Here's the setup, I am using arrays to store data to perform calculations in memory and then assigning the array back to the range. It's impressively quick when compared to usual excel calculation speeds.
So it's something like: (never mind the syntax this is not my main problem, but just to let you know the process)
Array = Range ("B11", "AC1200")
So first array dimension has my rows (11 to 1200), and the second array dimension has my collumns (B to AC).
I want to added a new record, or row to my table (anywhere, beginning or end is fine), but can't redim my array in my first dimension.) It lets me add extra collumns, but not rows.
I am aware that I can always write the extra row directly to the worksheet but it I still need to do more data manipulation before pasting the data.
Anyone with a solution that I can try?
Thanks
So it's something like: (never mind the syntax this is not my main problem, but just to let you know the process)
Array = Range ("B11", "AC1200")
So first array dimension has my rows (11 to 1200), and the second array dimension has my collumns (B to AC).
I want to added a new record, or row to my table (anywhere, beginning or end is fine), but can't redim my array in my first dimension.) It lets me add extra collumns, but not rows.
I am aware that I can always write the extra row directly to the worksheet but it I still need to do more data manipulation before pasting the data.
Anyone with a solution that I can try?
Thanks