Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 620
Default Change cell value immediately after a save

Can't you just set it after the save

ThisWorkbook.Save
Range("F1").Value=0
Range("F2").Value=0

--

HTH

Bob Phillips

"cam" wrote in message
...
I have this set on a worksheet that initiates a save when
either cell F1 or F2 is changed

Private Sub Worksheet_Change(ByVal Target As Range)

Application.EnableEvents = False
On Error GoTo ws_exit
If Not Intersect(Target, Range("f1:f2")) Is Nothing
Then
ThisWorkbook.Save
End If

ws_exit:
Application.EnableEvents = True
End Sub

After this save I need the values in cells E2 and F2 to be
reset to 0 (the number zero) using code as code changes
for some reason do not initiate the save. I need to
insure the user changes the value in cell E2 and F2 so
that the sheet will save and a RECALL formula I have will
update the running total from input in those 2 cells
[=RECALL(E2)+E2 and =RECALL(F2)+F2] THANKS!!! in advance
for any HELP!



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Fill in Blanks with immediately above cell value Charles Excel Discussion (Misc queries) 4 May 15th 09 05:09 PM
immediately closes when I try to open, error; can't save as, read Kris Excel Discussion (Misc queries) 0 August 3rd 08 04:05 PM
Copy data in one cell to blank cell immediately below, repeat Jeff Excel Worksheet Functions 1 May 19th 06 07:12 PM
Immediately jump to next cell? [email protected] Excel Discussion (Misc queries) 1 November 24th 05 09:51 PM
Change cell value immediately after a save Bob Phillips[_5_] Excel Programming 0 August 8th 03 01:26 PM


All times are GMT +1. The time now is 03:01 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"