Sub ChangeMASelection()
Dim Rng As Range
Dim c As Range
Dim InputPSFileName As String
Dim OutPutPDFFileName As String
Dim sJobOptions As String
Dim appDist As cACroDist
Dim StrAgent, StrPath As String
' Change reference to cell containing validation to suit
With Range("DropDownList")
Set Rng = Range(Mid(.Validation.Formula1, 2, 255))
For Each c In Rng
.Value = c.Value
StrAgent = Range("DropDownList") 'get the managing agent name
StrPath = ThisWorkbook.Path
Set appDist = New cACroDist
Sheets("Charts").Select
InputPSFileName = "\\lnscntfs02\fpddata\Claims\Analysis Services Regular Report Production Files\ECF\ECF_Dashboard_Final.ps"
OutPutPDFFileName = StrPath & "\" & StrAgent & "_ECF Dashboard Report.pdf"
'OutPutPDFFileName = "\\lnscntfs02\fpddata\Claims\Analysis Services Regular Report Outputs\ECF_CTP Dashboards\2011 ECF\2011 02\ECF Dashboards\" & StrAgent & "_ECF Dashboard Report.pdf"
Application.ActivePrinter = "Adobe PDF on Ne02:"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, ActivePrinter:= _
"Adobe PDF on Ne02:", PrintToFile:=True, Collate:=True, PrToFileName:="\\lnscntfs02\fpddata\Claims\Analysis Services Regular Report Production Files\ECF\ECF_Dashboard_Final.ps"
Application.Wait Now + TimeValue("00:00:55")
Call appDist.odist.FileToPDF(InputPSFileName, OutPutPDFFileName, sJobOptions)
On Error Resume Next
' Application.Wait Now + TimeValue("00:00:05")
Kill InputPSFileName
Next c
End With
End Sub
Bookmarks