Print from result of Data validated dropdown list to one combined PDF file

stevew303

New Member
Joined
Nov 2, 2017
Messages
1
Hi All,

I have an excel file for pupil timetables. In cell "C1" i have a dropdown menu which changes to each pupil name. Below this is the pupils timetable for the week. I have created a macro that automatically changes the dropdown to the next pupil and then prints the pupil timetable, then changes to the next pupil and prints again all from Excel to a printer. If I change my default printer to PDF it does the same but creates a new file for each time it changes the name. I would like the PDF to print all the dropdowns to one PDF file containing every pupil timetable in it please.

My VBA looks like this:

Sub PrintAll()
Dim R As Range
For Each R In Sheets("Hidden Info").Range("B2:B132")
If Not IsEmpty(R) Then
Range("B1") = R
ActiveSheet.PrintOut
End If
Next
End Sub


"Hidden info" is the tab where I have the full list of names in the range "B2:B132" (This all works fine)
"B1" is where I have the drop down of pupil names that changes from one to another.

I hope this is clear as it is my first post! :)

Thanks

Steve
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.

Forum statistics

Threads
1,215,438
Messages
6,124,873
Members
449,192
Latest member
MoonDancer

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