Forum Discussion
CptWilson11
May 09, 2024Copper Contributor
VBA Code - Open Workbook Button Hidden
Hello, TIA! I'm stumped, I'm trying to revive a macro book after the creator left the company. The workbook has an expiration code attached to it and when I extend the dates, the macro doesn't u...
- May 10, 2024
Insert the following line below Private Sub Workbook_Open():
Sheets("Instructions").Shapes("menuButton").Visible = True
HansVogelaar
May 10, 2024MVP
Insert the following line below Private Sub Workbook_Open():
Sheets("Instructions").Shapes("menuButton").Visible = True
CptWilson11
May 10, 2024Copper Contributor
That did it! Thank you so much!