I am trying to create a macro that shows a report. I have 27 worksheets and would like to just be able to run a macro that takes me to the sheet I want to go. Im not very good with Visual Basic and I dont really know how to code this. Here is just a quick sample of what Im looking at in VB.
Sub Show_Report()
'
' Show_Report Macro
' Macro recorded 12/13/2009 by Mindy Raines
'
' Keyboard Shortcut: Ctrl+a
'
Sheets("All").Select
Range("A1").Select
Sheets("Northwest").Select
Range("A1").Select
Sheets("Southeast").Select
Range("A1").Select
Sheets("Midwest").Select
Range("A1").Select
Sheets("Southwest").Select
Range("A1").Select
End Sub
I would like to have a prompt popup so that I can type in which sheet I would like to see. Is this a possibility in excel?
Thanks,
Steve
Bookmarks