I need a VB code for the above question.Please help.
views:
64answers:
1
+1
A:
This will copy everything from the first worksheet to the second:
Sub Test()
Worksheets("Sheet1").UsedRange.Copy
Worksheets("Sheet2").Range("A1").PasteSpecial
End Sub
Ben Hoffstein
2010-05-05 17:09:37