![]() |
When Save As stop running macro
I have a macro that changes the attributes of an Excel file when I open the
file, from read only to readwrite, then increment a cell (A1) by one, save the file then changes the attribute back to read only so that when I make changes to the file I should Save As and not save it and overwrite the original one. The problem is that when I save the file, if I decided to open the new file to review, the macro will run again and will increment A1. What shall I do so that when the user Save As the file, the macro wont be saved in the new file, or it wont run when the user reopen the file to review. Any help would be higly appreciated. |
When Save As stop running macro
Hi M K W,
If I understand you right, you want to be able to save the workbook without updating cell(A1)? Try the following VBA-code and activate it by a Shortcut key: Sub close1() ThisWorkbook.Sheets(1).Range("A1") = Range("A1").Value - 1 ThisWorkbook.Close End Sub I hope this will do the trick! Ron -----Original Message----- I have a macro that changes the attributes of an Excel file when I open the file, from read only to readwrite, then increment a cell (A1) by one, save the file then changes the attribute back to read only so that when I make changes to the file I should Save As and not save it and overwrite the original one. The problem is that when I save the file, if I decided to open the new file to review, the macro will run again and will increment A1. What shall I do so that when the user Save As the file, the macro wont be saved in the new file, or it wont run when the user reopen the file to review. Any help would be higly appreciated. . |
When Save As stop running macro
Thanx for your reply Ron.
It's not to save the work bookwithout updating A1, I'll explain again: When I open the original file, the macro will run and will do the following: change the file's attribute from readonly to readwrite, update A1 by 1, save the file (without closing it), changes its attribute again from readwrite to readonly so that when someone edits the file he can't Save it but Save As the file. When I re-open the new file (not the original, the second) the macro will run and do the previous steps. Here, I don't want the macro to run, when opening the second file I mean. In other words, I want the macro to run only when I open the original file and after I "Save As" it I dont want it to run when I open the new "Saved As" file. Hope I explained enough. Thanx for any other help "Ron" wrote in message ... Hi M K W, If I understand you right, you want to be able to save the workbook without updating cell(A1)? Try the following VBA-code and activate it by a Shortcut key: Sub close1() ThisWorkbook.Sheets(1).Range("A1") = Range("A1").Value - 1 ThisWorkbook.Close End Sub I hope this will do the trick! Ron -----Original Message----- I have a macro that changes the attributes of an Excel file when I open the file, from read only to readwrite, then increment a cell (A1) by one, save the file then changes the attribute back to read only so that when I make changes to the file I should Save As and not save it and overwrite the original one. The problem is that when I save the file, if I decided to open the new file to review, the macro will run again and will increment A1. What shall I do so that when the user Save As the file, the macro wont be saved in the new file, or it wont run when the user reopen the file to review. Any help would be higly appreciated. . |
All times are GMT +1. The time now is 01:32 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com