sajjjid Member May 31, 2017 #1 Whenever i open a file e.g. Shops.xlsm , I need a message to appear as "Please do not Edit this file" . Thanks.
Whenever i open a file e.g. Shops.xlsm , I need a message to appear as "Please do not Edit this file" . Thanks.
N NARAYANK991 Excel Ninja May 31, 2017 #2 Hi , This can be done using the Workbook_Open event , coding a MsgBox statement in the event procedure. The one line required will be : MsgBox "Please do not edit this file" , vbInformation If you want me to code this , please upload your workbook. Narayan
Hi , This can be done using the Workbook_Open event , coding a MsgBox statement in the event procedure. The one line required will be : MsgBox "Please do not edit this file" , vbInformation If you want me to code this , please upload your workbook. Narayan
sajjjid Member May 31, 2017 #3 Why i cannot upload a file .xlsm file from here? giving me option for .jpg and .pdf only.
sajjjid Member May 31, 2017 #4 I just drop this from explorer. Attachments Water.xlsm 13.8 KB · Views: 0
N Nikunj Rastogi New Member May 31, 2017 #5 It is possible only by VBA code as mention below. Code: Private Sub Workbook_Open() MsgBox ("Please do not edit this file") End Sub
It is possible only by VBA code as mention below. Code: Private Sub Workbook_Open() MsgBox ("Please do not edit this file") End Sub
sajjjid Member May 31, 2017 #6 Nikunj Rastogi said: It is possible only by VBA code as mention below. Code: Private Sub Workbook_Open() MsgBox ("Please do not edit this file") End Sub Click to expand... Thanks Nikunj. One more. I want message to appear every 10 minutes. E.g. Save File.
Nikunj Rastogi said: It is possible only by VBA code as mention below. Code: Private Sub Workbook_Open() MsgBox ("Please do not edit this file") End Sub Click to expand... Thanks Nikunj. One more. I want message to appear every 10 minutes. E.g. Save File.