D
Dan
I wanted to disable the close button in the upper right hand corner of Excel
so users would have to use a button on the spreadsheet (assigned to a macro)
to close the worksheet. I used the following code:
Private Sub WorkBook_BeforeClose (Cancel As Boolean)
Cancel = True
End Sub
The code works great but now my macro button will not work and I can't close
the worksheet at all. Can you help me out? I'd appreciate it!
so users would have to use a button on the spreadsheet (assigned to a macro)
to close the worksheet. I used the following code:
Private Sub WorkBook_BeforeClose (Cancel As Boolean)
Cancel = True
End Sub
The code works great but now my macro button will not work and I can't close
the worksheet at all. Can you help me out? I'd appreciate it!