How can I force a certain sheet to start everytime a user oepens a spreadsheet.
Also, How do I lock the macros and buttons so a user cannot just right click and changes things.
to open a sheet when a spreadsheet opens you need to go to the VBA Code of "ThisWorkbook" (rather than the code for a single sheet)
then in there you can have
Code:
Private Sub Workbook_Open()
Sheets("Sheet3").Select
End Sub
where "Sheet3" is the name of your sheet
and as for trying to lock macro's and buttons, I'm not sure about the macro's but for the buttons you can use:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.