Thread
:
Copy noncontigous cells to next sheet
View Single Post
#
2
Posted to microsoft.public.excel.misc
Gary''s Student
external usenet poster
Posts: 11,058
Copy noncontigous cells to next sheet
Sub foo()
Sheets("Sheet1").Range("A1").Copy Sheets("Sheet2").Range("A1")
Sheets("Sheet1").Range("C1").Copy Sheets("Sheet2").Range("B1")
End Sub
--
Gary''s Student - gsnu200723
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student