Hi All!
I have an Excel macro to print music bingo cards that does the following:
Instead of sending these to the printer each time I would like to have them print to a PDF file and save them to a folder. I would like the files to be named Bingo Card 1.pdf, Bingo Card 2.pdf etc. I would like to amend my original macro below, to accomplish this:
Sub BingoPrint()
' Refresh page and print x number of times
Application.ScreenUpdating = False
x = InputBox("How many sheets do you require printing?")
For Card = 1 To x
Calculate
'Amend the range to reflect your bingo card
Range("B3:H16").PrintOut
Next Card
Application.ScreenUpdating = True
End Sub
Any help on this would be greatly appreciate! Thank you very much!
Patrick
I have an Excel macro to print music bingo cards that does the following:
- Randomly chooses 25 songs from a list of x number of songs, fills in the cells of a 5x5 grid
- Refreshes the card, which again chooses 25 random song title to fill the card
- Repeats based on the quantity I choose
Instead of sending these to the printer each time I would like to have them print to a PDF file and save them to a folder. I would like the files to be named Bingo Card 1.pdf, Bingo Card 2.pdf etc. I would like to amend my original macro below, to accomplish this:
Sub BingoPrint()
' Refresh page and print x number of times
Application.ScreenUpdating = False
x = InputBox("How many sheets do you require printing?")
For Card = 1 To x
Calculate
'Amend the range to reflect your bingo card
Range("B3:H16").PrintOut
Next Card
Application.ScreenUpdating = True
End Sub
Any help on this would be greatly appreciate! Thank you very much!
Patrick