Jmorrison67
Board Regular
- Joined
- Aug 20, 2021
- Messages
- 58
- Office Version
- 365
- Platform
- Windows
Good morning Community
,
I have a problem I was hoping you could help guide me with. Will try to summarize it (i tried to upload an example excel file with what i'm trying to do but the "upload image" function didnt link it - any suggestion on how to get it in here?)
Current solution / process:
- Note: This is an example I created, the real world example has 89 tabs which would be listed out in the array in Col A below (not in the example)
- Macro set up that looks at the tab "Pdf Ref" array in column A for the list and then creates the PDF (goes through a step to check the naming of the tab is the same as in the list, also displays a box for user that it's run successfully).
- The worksheet ordering in the workbook is the same order as the array is asking for it to be printed.
- As the real world example is 89 worksheets, the example should give the same method that i'm looking for help with.
Copy of code used that gives the desired result:
What I need help with
I need a new code that looks at the same array of worksheets, but has them in a different order for the pdf print as per the array in "Revised Order Ref". Example below:
Note: the order of the worksheets in the excel workbook CANNOT be changed. I have 5 different combinations in the real world of packs which take different tabs out of the 89 tabs and create different pdf's. In this example I have shown one pack (which i will just replicate the code for the other packs i need changing the array numbering).
I'm sure it will be possible to do, but just really need some help with it.
Thanks in advance
Jmorrison67

I have a problem I was hoping you could help guide me with. Will try to summarize it (i tried to upload an example excel file with what i'm trying to do but the "upload image" function didnt link it - any suggestion on how to get it in here?)
Current solution / process:
- Note: This is an example I created, the real world example has 89 tabs which would be listed out in the array in Col A below (not in the example)
- Macro set up that looks at the tab "Pdf Ref" array in column A for the list and then creates the PDF (goes through a step to check the naming of the tab is the same as in the list, also displays a box for user that it's run successfully).
- The worksheet ordering in the workbook is the same order as the array is asking for it to be printed.
- As the real world example is 89 worksheets, the example should give the same method that i'm looking for help with.
Copy of code used that gives the desired result:
VBA Code:
Sub PDFPackEX()
Dim FolderPath As String
FolderPath = "R:\XXX\2025\Reporting\PDF PACK EXAMPLE"
Dim i As Long, ary, tx As String, q As String
ReDim ary(1 To 11)
For i = 1 To 11
tx = Sheets("Pdf Ref").Range("A" & i).Value
q = Replace(tx, "'", "''")
If Not Evaluate("ISREF('" & q & "'!A1)") Then MsgBox "Sheets " & q & " doesn't exist": Exit Sub
ary(i) = tx
Next
Sheets(ary).Select
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=FolderPath & " - " & Format(Now, "dd-mm-yyyy hhmm"), OpenAfterPublish:=False, IgnorePrintAreas:=False
Call Sheets("Output").Activate
MsgBox "PDF Pack successfully exported"
End Sub
What I need help with
I need a new code that looks at the same array of worksheets, but has them in a different order for the pdf print as per the array in "Revised Order Ref". Example below:
Note: the order of the worksheets in the excel workbook CANNOT be changed. I have 5 different combinations in the real world of packs which take different tabs out of the 89 tabs and create different pdf's. In this example I have shown one pack (which i will just replicate the code for the other packs i need changing the array numbering).
I'm sure it will be possible to do, but just really need some help with it.
Thanks in advance
Jmorrison67
Attachments
Last edited by a moderator: