Include selected sheets in a ListBox

Status
Not open for further replies.

olem

New Member
Joined
Oct 1, 2006
Messages
12
I try again!!! Well I use a form to list all sheets in a wokbook and it is like this:

Private Sub UserForm_Initialize()
Dim objSheet As Object
CommandButton1.Caption = "Ok"
CommandButton2.Caption = "Cancel"

With frmOle.ListBox1
For Each Item In Sheets
.AddItem Item.Name
Next
.Selected(0) = True
.SetFocus
End With

End Sub

However this list all sheets, but I just want to list those sheets wich have the name "plan" + "number" (e.g. plan 1, plan 2, plan 3 etc...). How can I do that????

Regards
olem
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Try this.
Code:
Private Sub UserForm_Initialize()
Dim objSheet As Object
CommandButton1.Caption = "Ok"
CommandButton2.Caption = "Cancel"

With Me.ListBox1
     For Each objSheet In Sheets
          If UCase(Left(objSheet.Name, 4))="PLAN" Then
              .AddItem objSheet.Name
          End If
     Next   
     .Selected(0) = True
     .SetFocus
End With

End Sub
 
Upvote 0
Good evening

How about this :

Code:
Private Sub UserForm_Initialize()
Dim objSheet As Object
CommandButton1.Caption = "Ok"
CommandButton2.Caption = "Cancel"

With frmOle.ListBox1
For Each Item In Sheets
If Left(Item.Name, 4) = "Plan" Then
.AddItem Item.Name
End If
Next
.Selected(0) = True
.SetFocus
End With

End Sub

HTH

DominicB
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,214,605
Messages
6,120,476
Members
448,967
Latest member
visheshkotha

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