Input Box exist sub option

Ada01

Board Regular
Joined
Sep 15, 2008
Messages
60
I have the following code:

Code:
Function TabIs(TName As String) As Boolean
    On Error Resume Next
    TabIs = Worksheets(TName).Name = TName
    On Error GoTo 0
End Function
Sub SelectSheet()

' Variable
Dim TabName As String

'Check for Department and prep to move to that sheet

Do Until TabIs(TabName)
TabName = InputBox("Enter Department")
If Not TabIs(TabName) Then MsgBox TabName & " does not exist in workbook", , "Sheet Name Does Not Exist"
Loop

If TabName = "" Then Exit Sub

'Jump to sheet

Sheets(TabName).Select

End Sub
I need to be able to exit the sub if 1.) no department is entered or 2.) if cancel button is pushed
I have tried a few things but they do not work or they simply are not allowed or understood. The last thing I tried was to check to see if the TabName was blank and then simply exit.

Thanks for any help!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Perhaps something like this will work for you.
If the user presses Cancel or enters "", the sub will be exited.
It the user mistypes a sheet, name, it will loop, givnig them an chance to correct themselves.
Code:
Do Until TabIs(TabName)
    TabName = InputBox("Enter Department")

    If StrPtr(TabName) = 0 Then
        Rem cancel pressed
        Exit Sub
    ElseIf TabName = vbNullString Then
        Rem "" entered
        Exit Sub
    ElseIf Not TabIs(TabName) Then 
        MsgBox TabName & " does not exist in workbook", , "Sheet Name Does Not Exist"
    End If
Loop
 
Upvote 0

Forum statistics

Threads
1,224,583
Messages
6,179,673
Members
452,937
Latest member
Bhg1984

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top