You can right click the area with the four navigation arrows on it to bring up a list of sheets in your workbook and select it that way.
HTH,
Daniel.
With 200 sheets you may want a macro that jumps to the sheet by name, here one way to do it:
Sub getSheet()
On Error GoTo err99
str1 = InputBox("Enter Sheet Name", "Get Sheet")
If str1 = "" Then Exit Sub
Sheets(str1).Select
Exit Sub
err99: str2 = "Sheet name '" & str1 & "' not in the workbook."
MsgBox str2
Exit Sub
End Sub
I would assign this macro to a shortcut key, like 'Ctrl+g' to make it easier to run each time. Of course you must know the name of the sheet you want to go to, good luck.
Very cool, I did not know that ! (nt)