Sub CopyTest()
Range("A1:H18").Copy
Range("A65536").Select
Selection.End(xlUp).Select
ActiveCell.Offset(7, 0).Select
ActiveSheet.Paste
Application.CutCopyMode = False
Range("A65536").Select
Selection.End(xlUp).Select
Application.CutCopyMode = False
ActiveCell.Offset(0, 0).Select
End Sub
this is the code I use now.... It does the paste BUT it doesn't paste correctly.. I mean when I copy and paste manually all the formulas work when I use this code above everything seems OK but formulas do not work correctly ... can you give me the adaptation so that the above code actually does the same thing as a manual copy paste fro everything in range A1:H18 with a few rows in between so that the user can click a button assigned with this macro and create copies of the selected area at will