H hberg Jan 27, 2010 #1 I would like to create a button to bring me to a different sheet within the same work book
E Eduardo Jan 27, 2010 #2 Hi, create a button and apply the code as follow if the sheet is hidden Sub Bring sheet() ' ' Bring sheet Macro ' ' Sheets("your name").Visible = True Sheets("your name").Select End Sub if sheet is not hidden use Sub Bring sheet() ' ' Bring sheet Macro ' Sheets("your name").Select End Sub
Hi, create a button and apply the code as follow if the sheet is hidden Sub Bring sheet() ' ' Bring sheet Macro ' ' Sheets("your name").Visible = True Sheets("your name").Select End Sub if sheet is not hidden use Sub Bring sheet() ' ' Bring sheet Macro ' Sheets("your name").Select End Sub