View Single Post
 
Old 08-12-2014, 10:26 PM
RAJUSINGH.1111 RAJUSINGH.1111 is offline Windows 7 64bit Office 2007
Novice
 
Join Date: Aug 2014
Location: New Delhi
Posts: 3
RAJUSINGH.1111 is on a distinguished road
Default

You need to use offset to go another cells down
Sheets("Sheet1).Select
Selection.Offset(Rows,Columns).Select
Selection.Copy
Sheets("Sheet2").Select
Selection.Offset(Rows,Columns).Select
ActiveSheet.Paste
Application.CutCopyMode=False

------------
Raju Singh
Reply With Quote