Sub LoopRange()
Dim rCell As Range
Dim rRng As Range
Dim Name As String
Dim Stamp As String
Dim WhereTo As String
Dim sFileName As String
Dim FNameYearQuarter As String
Dim FNameDRG As String
Worksheets("Dashboard").Activate
Set rRng = Range("A1:A19")
For Each rCell In rRng.Cells
Sheets("Dashboard").Range("I5").Value = rCell
'Begin updating sheet with active cell
Application.ScreenUpdating = False
Sheets(Array("Dashboard 1", "Dashboard Detail")).Select
ActiveSheet.Calculate
'Place active cell at top left
' Range("A1").Select
Application.Goto Range("A1"), True
ActiveWindow.VisibleRange(1, 1).Select
Sheets("Medical DRG Dashboard").Select
' Range("A1").Select
Application.Goto Range("A1"), True
ActiveWindow.VisibleRange(1, 1).Select
Application.ScreenUpdating = True
'Being PDF-ing
' Retrieve settings from the Form
Sheets(Array("Dashboard", "Dashboard Detail")).Select
' Assemble the filename
FNameYearQuarter = Sheets("Dashboard").Range("A7").Value
FNameDRG = Sheets("Dashboard").Range("Z5").Value
sFileName = FNameYearQuarter & " Report - " & FNameDRG & ".pdf"
' Save the File as PDF
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
"C:\My Documents\" & sFileName, Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, _
OpenAfterPublish:=True
' Make sure we open the Order Form upon Exit
Sheets("Dashboard").Select
Next rCell
End Sub