Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / Programming / February 2006

Tip: Looking for answers? Try searching our database.

copy formulas from a contiguous range to a safe place and copy them back later

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Lucas Budlong - 22 Feb 2006 19:54 GMT
Hi,

What I want to do is copy the formulas from a contiguous range on sheet1 to
a safe place (say sheet2) so they can easily be restored later, if someone
mucks them up.

Any assistance at all will be very much appreciated,
Thank you,
LB
Toppers - 22 Feb 2006 20:22 GMT
Lucus,

Copies Sheet1 A1:a10 to Sheet2 A1:a10
Sub Copy()
With Worksheets("Sheet1")
.Range("A1:a10").Copy Worksheets("Sheet2").Range("a1")
End With
End Sub

> Hi,
>
[quoted text clipped - 5 lines]
> Thank you,
> LB
Ardus Petus - 22 Feb 2006 20:26 GMT
Sub save()
Sheets("sheet1").Range("A5:C8").Copy Sheets("sheet2").Range("A1")
End Sub

Modify sheet name sand ranges according to your needs

HTH

--
AP

> Hi,
>
[quoted text clipped - 5 lines]
> Thank you,
> LB
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.