Search for worksheet; need code for partial name

moxiepilot

New Member
Joined
Jan 2, 2018
Messages
11
So I was able to find VBA code to be able to search for a Worksheet within an open workbook. The issue is that there are going to be a lot of sheets, and remembering the exact name is going to be a challenge. Is there a way to add additional code that searches for a partial match and opens that worksheet?

The code I have so far is:

Sub FindSheet()
Dim xName As String
Dim xFound As Boolean
xName = InputBox("Enter sheet name to find in workbook:", "Sheet search")
If xName = "" Then Exit Sub
On Error Resume Next
ActiveWorkbook.Sheets(xName).Select
xFound = (Err = 0)
On Error GoTo 0
If xFound Then
MsgBox "Sheet '" & xName & "' has been found and selected!"
Else
MsgBox "The sheet '" & xName & "' could not be found in this workbook!"
End If
End Sub

Thanks for the help!
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Try:
Code:
Sub FindSheet()
    Dim xName As String
    Dim xFound As Boolean
    Dim ws As Worksheet
    xName = InputBox("Enter sheet name to find in workbook:", "Sheet search")
    If xName = "" Then Exit Sub
    For Each ws In Sheets
        If ws.Name Like "*" & xName & "*" Then
            ws.Select
            MsgBox "Sheet '" & xName & "' has been found and selected!"
            Exit Sub
        End If
    Next ws
    MsgBox "The sheet '" & xName & "' could not be found in this workbook!"
End Sub
 
Last edited:
Upvote 0
Thank you. Do you also know how to change the Macro name so that it does not have the workbook title in it? I would like to change the macro to "FindSheet" or something like that rather than "Really long workbook name - Findsheet"
 
Upvote 0
So I was able to find VBA code to be able to search for a Worksheet within an open workbook. The issue is that there are going to be a lot of sheets, and remembering the exact name is going to be a challenge.
Maybe you can make use of code I posted in this article (entitled 'A Neat "Go To Sheet" Selector') that I posted in my mini-blog here (full instructions included in the article)...

http://www.excelfox.com/forum/showthread.php/1830-A-Neat-quot-Go-To-Sheet-quot-Selector
 
Last edited:
Upvote 0
I'm not really sure what you mean. The macro's current name is "FindSheet".
 
Upvote 0
I'm not really sure what you mean. The macro's current name is "FindSheet".
If the name search is not exact, no result is generated. So, if I have spreadsheets named Timber, PineTimber, and MapleTimber, if I try to search for "Maple" no sheet is found. So, I'm additionally looking to tag on a part of the code which accounts for partial name searches. I have found some Google results what have "Like." commands in them but since I don't know VBA it is difficult to figure out the right syntax.
 
Upvote 0
If the name search is not exact, no result is generated. So, if I have spreadsheets named Timber, PineTimber, and MapleTimber, if I try to search for "Maple" no sheet is found. So, I'm additionally looking to tag on a part of the code which accounts for partial name searches. I have found some Google results what have "Like." commands in them but since I don't know VBA it is difficult to figure out the right syntax.
If you downloaded the "A Neat 'Go To Sheet' Selector" example that I posted (see Message #4 ) in mini-blog article located here...

http://www.excelfox.com/forum/showthread.php/1830-A-Neat-quot-Go-To-Sheet-quot-Selector

then if you press Alt+F11 to go into the VB editor and locate "GoToSheetSelectorUserForm" item in the "Project-VBAProject" window list on the left, double-click it and then double click the TextBox (top white box on the form that opened up), and replace the line of code between the For and Next lines of code with this line of code...
Code:
[table="width: 500"]
[tr]
	[td]    If LCase(Sheets(X).Name) Like "*" & LCase(TextBox1.Text) & "*" Then ListBox1.AddItem Sheets(X).Name[/td]
[/tr]
[/table]
then when you press CTRL+G, the Listbox will show worksheets whose name's partially match what you have typed.
 
Upvote 0
I've made a slight change to the macro I suggested in Post #2 to make the search case insensitive. It should do exactly what you described in Post #6 .
Code:
Option Compare Text
Sub FindSheet()
    Dim xName As String
    Dim xFound As Boolean
    Dim ws As Worksheet
    xName = InputBox("Enter sheet name to find in workbook:", "Sheet search")
    If xName = "" Then Exit Sub
    For Each ws In Sheets
        If ws.Name Like "*" & xName & "*" Then
            ws.Select
            MsgBox "Sheet '" & xName & "' has been found and selected!"
            Exit Sub
        End If
    Next ws
    MsgBox "The sheet '" & xName & "' could not be found in this workbook!"
End Sub
You should keep in mind that since only one sheet can be selected at any one time, this macro will select the first sheet with your search criteria. For example, using Timber, PineTimber, and MapleTimber as sheet names, if you enter "Timber" as the search criteria, the first sheet will be selected. IF you enter "Maple" or "maple", MapleTimber will be selected.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,244
Messages
6,170,976
Members
452,372
Latest member
Natalie18

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