AsgiE
New Member
- Joined
- May 26, 2005
- Messages
- 44
Hi,
I need guidance on how I can reduce the range selected in row 4 by 1 row.
The selection. Offset syntax moves the entire selection one row up and overwrites one of the rows above the range.
I just want the range to be reduced by 1 row.
Any help will be greatly appreciated
Thanks
Range("D9").Select
Selection.End(xlDown).Select
Selection.Copy
Range(Selection, Selection.End(xlDown)).Select
Selection.Offset(-1, 0).Select
ActiveSheet.Paste
Application.CutCopyMode = False
I need guidance on how I can reduce the range selected in row 4 by 1 row.
The selection. Offset syntax moves the entire selection one row up and overwrites one of the rows above the range.
I just want the range to be reduced by 1 row.
Any help will be greatly appreciated
Thanks
Range("D9").Select
Selection.End(xlDown).Select
Selection.Copy
Range(Selection, Selection.End(xlDown)).Select
Selection.Offset(-1, 0).Select
ActiveSheet.Paste
Application.CutCopyMode = False