Hello
I can use a little help on this question.
I have a 3 Dim dinamic array, say, ArrV(1 to 2, 1 to 5000, 1 to 500) as double and I am looking for a fast way to write a 2 Dim part of it ArrV(1, allrows, allcolumns) to a range, such as
RangeRg = ArrV(1), or RangeRg = ArrV(2)
This results in a compiler error
ArrV is dinamic. Only the 1st dimension is fixed 1 to 2.
If the array ArrV was 2 Dim then RangeRg= ArrV does the job clean and quickly.
But as it is a 3 dim array, how can I do it without having to copy every single element to a new 2 dim array?
Is there a way to do it FAST?
Thanks in advance for any help or suggestions.