VBA to create an Array from a list

Monkeyboyz

New Member
Joined
Sep 30, 2010
Messages
10
I have done this before but just can't remember how to do it.

I have a dynamic range that is a list of some of the tabs I have in a worksheet. I need to turn that range into an array so I can then select it all with the following Sub and create a pdf.
The dynamic range contains the tabs Wall 1, Wall 2 etc. I can create it like I have below but the range continually changes

Code:
Sub CreatePDF()
    ThisWorkbook.Sheets(Array("Wall 1", "Wall 2", "Wall 3", "Wall 4")).Select


    Sheets("Wall 1").Activate


    ActiveSheet.ExportAsFixedFormat _
            Type:=xlTypePDF, _
            Filename:="C:\temp\temp.pdf", _
            Quality:=xlQualityStandard, _
            IncludeDocProperties:=True, _
            IgnorePrintAreas:=False, _
            OpenAfterPublish:=True


    Sheets("Wall 1").Select
    Range("A1").Select
End Sub
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Hi Monkeyboyz,

Try the following,

Code:
[FONT=Consolas][SIZE=2][COLOR=Navy]Dim bl1stSheet As Boolean
Dim wsWS As Worksheet
 
bl1stSheet = True
For Each wsWS In Worksheets
   If wsWS.Visible = xlSheetVisible And Left(wsWS.Name, 4) = "Wall" Then
      wsWS.Select bl1stSheet
      bl1stSheet = False
   End If
Next
[/COLOR][/SIZE][/FONT]
 
Upvote 0
I have a dynamic range that is a list of some of the tabs I have in a worksheet.
Where is this dynamic range located at? What sheet is it on? What cell contains the first item in the list? Which direction does the list go in... down a column or across a row?
 
Upvote 0
Thanks Mohammed your code works to an extent, however I do need another couple of sheets included in the selected worksheets, one being "Front Sheet" and the other being "T&Cs"
 
Upvote 0
The dynamic range is located on a Sheet called "Front Sheet", cells Q12:Q25 and the list goes down
In order to create a one-dimensional array out of that list, try this in your code...
Code:
Dim SheetNames As Variant
SheetNames = Application.Transpose(Range("Q12", Cells(Rows.Count, "Q").End(xlUp)))
SheetNames is now a one-dimensional array that you can iterate in a loop as needed.
 
Upvote 0
Here you go,

Code:
[FONT=Consolas][SIZE=2][COLOR=Navy]Dim bl1stSheet As Boolean
Dim wsWS As Worksheet
 
bl1stSheet = True
For Each wsWS In Worksheets
   If wsWS.Visible = xlSheetVisible _
      And (Left(wsWS.Name, 4) = "Wall" _
      Or wsWS.Name = "Front Sheet" _
      Or Left(wsWS.Name, 4) = "T&Cs") _
      Then
      wsWS.Select bl1stSheet
      bl1stSheet = False
   End If
Next[/COLOR][/SIZE][/FONT]
 
Upvote 0

Forum statistics

Threads
1,216,434
Messages
6,130,611
Members
449,584
Latest member
c_clark

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