Hide worksheet when moving back to another sheet

  • Thread starter Johanna Gronlund
  • Start date
J

Johanna Gronlund

Hello,

I have a sheet called 'calculations' that I want normally to be hidden.
However, there is a button on one of the sheet (called 'inputs') for the
users who are interested in detail to unhide it and see it.

Sub Reveal()
With ThisWorkbook
If Worksheets("Calculations").Visible = False Then
Worksheets("Calculations").Visible = True
Worksheets("Calculations").Activate
End If
End With
End Sub

I have managed to get this working by using this forum.

Now, I would like to have a code that hides the sheet 'calculations' again
when the users return to the 'inputs'. I was going to have a button for the
users to use.

As I am not very good with macros, I'd be grateful if someone could help me.

Thanks very much in advance!
 
J

Jacob Skaria

Sub Macro2()
Sheets("Inputs").Activate
Sheets("Calculations").Visible = False
End Sub
 
D

Don Guillett

Why two buttons when ONE will do.

Sub hideunhideworksheet()
Sheets("Sheet19").Visible = True = Not _
Sheets("Sheet19").Visible = True
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top