I have the following macro that prints to the printer just find, but I would like to know how to send them to a PDF file instead.
Sub PrintAllMSEL()
RowCount = Sheet1.Cells(Rows.Count, 1).End(xlUp).Row - 1
Worksheets("PrintMSEL").Select
For i = 1 To RowCount
Range("B1").Value = i
ActiveSheet.PrintOut copies:=1
Next i
End Sub
Sub PrintAllMSEL()
RowCount = Sheet1.Cells(Rows.Count, 1).End(xlUp).Row - 1
Worksheets("PrintMSEL").Select
For i = 1 To RowCount
Range("B1").Value = i
ActiveSheet.PrintOut copies:=1
Next i
End Sub