Private function not working

Pobek

Board Regular
Joined
Jul 7, 2015
Messages
89
I have this private function before closing a workbook:

Private Sub Workbook_BeforeClose(Cancel As Boolean)

Call SO
End Sub



Sub SO()

Worksheets("setUp").Unprotect Password:="xcxcxcxc"
Sheets("setUp").Visible = True

If Range("NOP").Value < Now Then
Range("NOC").Value = Now
Else
Range("NOC").Value = Range("NOP").Value + 0.00012
End If

Worksheets("setup").Protect Password:="xcxcxcxc"




SO ais meant to perform some updates on some protected and hidden sheets before closing. SO runs FINE run by itself... HOWEVER it falls over (at this stage: "Range("NOC").Value = Now") unable to update information on a locked sheet when called by the private function. What am I doing wrong??
'
The Sub F8s fine by itself, but unable to conduct the same operation when called by a another sub that closes the workbook (thereby engaging the private function before closing)
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
What is the specific excel/vba error message you are getting? If ranges "NOP" & "NOC" are both on worksheet "setUp" then try this

Code:
Sub SO()
    With Worksheets("setUp")
        .Unprotect Password:="xcxcxcxc"
        .Visible = True

        If .Range("NOP").Value < Now Then
            .Range("NOC").Value = Now
        Else
            .Range("NOC").Value = Range("NOP").Value + 0.00012
        End If

        .Protect Password:="xcxcxcxc"
    End With

BTW, for clarity when posting code:
attachment.php
 
Upvote 0
"Falling over" is not much to go on.
 
Upvote 0
What has been discovered is that the Sub: SO works fine (by itself), however if another sub tries to close down the workbook with a [workbook.close], thats when the code falls over.
 
Upvote 0
For some reason, the worksheet unprotect method does not work if the close command is from the vba workbook.close statement. You could work around it by explicitly unprotecting the worksheet just before you close it. The protect method seems to work so "SO" would re-lock the sheet once it runs.

Code:
Sub SomeOtherSubThatClosesTheWorkbook()
    Dim WorkBookToClose As Workbook

    'This example assumes the workbook is already open
    Set WorkBookToClose = Workbooks("MySOWorkbook.xlsm")    'Where "MySOWorkbook.xlsm" is your workbook that has the macro SO in it.

    WorkBookToClose.Worksheets("setUp").Unprotect Password:="xcxcxcxc"
    WorkBookToClose.Close False    'or True, your choice
End Sub
 
Upvote 0
For some reason, the worksheet unprotect method does not work if the close command is from the vba workbook.close statement. You could work around it by explicitly unprotecting the worksheet just before you close it. The protect method seems to work so "SO" would re-lock the sheet once it runs.

Code:
Sub SomeOtherSubThatClosesTheWorkbook()
    Dim WorkBookToClose As Workbook

    'This example assumes the workbook is already open
    Set WorkBookToClose = Workbooks("MySOWorkbook.xlsm")    'Where "MySOWorkbook.xlsm" is your workbook that has the macro SO in it.

    WorkBookToClose.Worksheets("setUp").Unprotect Password:="xcxcxcxc"
    WorkBookToClose.Close False    'or True, your choice
End Sub


Hey, thanks for your assistance. I will try this too and analyze the effect.

I did manage to get it working. You were right in the sense that the "workbook.close" statement was ineffective in editing the SETUP sheet. However I put in the code:

[userinterfaceonly:=True]

in the last line of the private function when opening (see below) and it ensured that the VBA could effect the desired editing.

[Worksheets("setup").Protect Password:="pobekpan", userinterfaceonly:=True]
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,072
Latest member
DW Draft

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