Can someone please help me in shifting a defined cell range one column to the right.
if i define
rng = B2:B3
I need a code to move my values in B2:B3 to B3:B4.
Here is what i have so far and none of this works. I get an error in the third line.
Dim rng As Range
Set rng = Range(DataSheet.Cells(arr(z)(1), 2), DataSheet.Cells(arr(z)(1), LastCol))
rng.Insert Shift:=xlShiftToRight '(i tried this first)
or
rng.Offset(0, 1).Select '(I tried this second and this also did not work)
1 Answer