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 / New Users / January 2007

Tip: Looking for answers? Try searching our database.

Saving current worksheet on cell value change

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
scotty - 23 Jan 2007 00:36 GMT
Let's say I want the current worksheet to save when the value changes in cell
b15 or b45 or e15, etc.  How can I get this done.

Thanks.
JE McGimpsey - 23 Jan 2007 15:29 GMT
one way:

Put this in your worksheet code module (right-click the worksheet tab
and choose View Code):

   Private Sub Worksheet_Change(ByVal Target As Excel.Range)
       If Not Intersect(Target, Range("B15,B45,E15")) Is Nothing Then _
           ThisWorkbook.Save        
   End Sub

> Let's say I want the current worksheet to save when the value changes in cell
>  b15 or b45 or e15, etc.  How can I get this done.
>
> Thanks.

Rate this thread:






 
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.