What formula should I use?

B

broop

I am using at the moment the following macro code to hide and unhide
worksheet. Once i hide the worksheet i want to be able to have it tak
you to a certain worksheet that i have not hidden what macro should
use to accomplish this?

Sub HiddenFormulasnewvision()
'
' HiddenFormulasnewvisionPage Macro
' Macro recorded 10/14/2008 by
'

'
ActiveWindow.SelectedSheets.Visible = False
End Sub

Sub UnhideFormulasnewvision()
Sheets("Formulas new vision").Visible = True
Sheets("Formulas new vision").Select
End Su
 
B

Bernard Liengme

Sub hideme()
Worksheets("Sheet1").Visible = False
Worksheets("Sheet3").Activate
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