R
Robert Gillard
Dim rng As Range
Set rng = Range("g17").End(xlDown).Resize(1, 1)
rng.AutoFill Destination:=rng.Resize(rng.Columns.Count, 2)
What I want the above to do, is to go to the last item in Column G (say
G5) and copy it to the cell below (G6), but this fills both G6 and H7.
I feel sure it is very easy to resolve but I seem to have tried all
permutations without success.
Please advise where I am going wrong.
Bob
Set rng = Range("g17").End(xlDown).Resize(1, 1)
rng.AutoFill Destination:=rng.Resize(rng.Columns.Count, 2)
What I want the above to do, is to go to the last item in Column G (say
G5) and copy it to the cell below (G6), but this fills both G6 and H7.
I feel sure it is very easy to resolve but I seem to have tried all
permutations without success.
Please advise where I am going wrong.
Bob