run a "call " when opening a workbook for edit

CsJHUN

Active Member
Joined
Jan 13, 2015
Messages
360
Office Version
  1. 365
  2. 2021
  3. 2019
Platform
  1. Windows
  2. Mobile
Hi guys!

I have a private sub on "thisworkbook"
Code:
Private Sub Workbook_open()
Call module.macroname
End Sub
It is a password protected wb for edit. (So if you didnt give the password when opening you can only read and can't save the file)
I want to edit this privatesub for dont run that "call" if someone open the WB to edit it. (or if someone open for read-only run that "call")

You are awesome, thx for advice.
Cheers
John
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
You could try:
Code:
Private Sub Workbook_open()
If Me.ReadOnly Then Call Module.macroname
End Sub
 
Upvote 0
THX for quick reply, working :)
Never though that would be that easeee. I should look after that "me" a lil bit more :)
Thanks again
 
Upvote 0
The "Me" keyword can be used here as you are in the "ThisWorkbook" code module. If you were using the code in another module it would be writted as:

Rich (BB code):
ThisWorkbook.ReadOnly
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,869
Members
449,054
Latest member
juliecooper255

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top