Better coding

mc136355

New Member
Joined
Mar 20, 2018
Messages
36
Hi am looking at tidying my code. New to vba so have been gathering bit from here and there and trying to string them together.

My code when ran looks in all sheets for a name begining with some text and then will go to a further function to run more code.

my question is could this code be made smaller and therefore tidier.

Much obliged for any help

MC
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
My code is as follows:


Function Find_Sheet(myArr As String) As Boolean
Dim wsFind As Worksheet

For Each wsFind In Sheets
If wsFind.Name Like myArr & "*" Then
MsgBox wsFind.Name & " LIKE " & myArr

Find_Sheet = True

MyOrder = "Do you wish to show records?"
Ans = MsgBox(MyOrder, vbQuestion + vbYesNo, "???")

If Ans = vbNo Then
MsgBox "Not show records"

Else
Var = Add_Sheet(myArr)
End If
Exit Function

End If

MsgBox wsFind.Name & " NOT LIKE " & myArr
Next

End Function
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,325
Members
452,635
Latest member
laura12345

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