Can't really find an answer, perhaps it is not possible? I am trying the following in VBA.
I have a range A1:AB10 (rng1) on sheet1 (always the same size). I want to copy that and transpose it and place it in sheet2 (rng2).
Then the loop runs again and I am then going to copy rng1 again, transpose it and and place it UNDER the first values on sheet2.
However, I do not want to use copy - pastespecial! Preferably I want the data directly (i.e. rng2(offset) = rng 1) OR using copy destination.
It is already in a loop so no problem having a variable change for an offset-statement. Is it possible to use the copy methods above together with "transpose"? How would that line look like?
like this, if you see what I mean
rng2.offset(j,0). = rng1.transpose
I have a range A1:AB10 (rng1) on sheet1 (always the same size). I want to copy that and transpose it and place it in sheet2 (rng2).
Then the loop runs again and I am then going to copy rng1 again, transpose it and and place it UNDER the first values on sheet2.
However, I do not want to use copy - pastespecial! Preferably I want the data directly (i.e. rng2(offset) = rng 1) OR using copy destination.
It is already in a loop so no problem having a variable change for an offset-statement. Is it possible to use the copy methods above together with "transpose"? How would that line look like?
like this, if you see what I mean
rng2.offset(j,0). = rng1.transpose