Sub Downloadx()Dim URL As String
Dim tstamp As String
Dim Folder0 As String
Dim Folder1 As String
Dim Namer As String
Dim Date0 As String
Dim Date1 As String
Dim LocalFilePath As String
Dim TempFolderOLD As String
Dim TempFileNEW As String
Dim DownloadStatus As Long
Dim LastRow As Long
Dim Finalname As String
Dim btn As Shape
Dim MyFSO As FileSystemObject
Set MyFSO = New Scripting.FileSystemObject
Dim rw As Long
' find last row of data in column B on 'Background'
LastRow = Sheets("Background").Range("B" & Rows.Count).End(xlUp).Row
' loop through rows on 'Background'
For rw = 4 To Sheets("Background").Range("B" & Rows.Count).End(xlUp).Row
With Sheets("Background")
Namer = .Range("B" & rw) 'Pub name
URL = .Range("I" & rw) 'URL to download
Date0 = .Range("E" & rw) 'Week #
Date1 = .Range("C" & rw) 'Year #
For rw = 4 To .Range("B" & Rows.Count).End(xlUp).Row
End With
With Sheets("Setup")
Folder0 = .Range("B5") 'temp file
Folder1 = .Range("B7") 'permanent file
End With
TempFolderOLD = Environ("Userprofile") & "\" & Folder0
tstamp = Format(Now, "mm-dd-yyyy")
TempFileNEW = TempFolderOLD & tstamp & "\" & Namer & ".pdf"
LocalFilePath = Environ("Userprofile") & "\" & Folder1 & "\"
Finalname = Namer & ".pdf"
'If these criteria are met, let's begin the download tree
If Date1 <> Sheets("Background").Range("G2") And Date0 <> Sheets("Background").Range("I2") Then
'Let's assign everything to the temp folder
'Begin by clearing any possible undeleted/corrupted files from my "temp" folder
If Len(Dir(TempFolderOLD)) <> "" Then Kill (TempFolderOLD)
'Make a new temp folder
If Len(Dir(TempFolderOLD)) = "" Then MkDir (TempFolderOLD)
'Attempt download to the temp folder
DownloadStatus = URLDownloadToFile(0, URL, TempFileNEW, 0, 0)
'Check for proper download
If DownloadStatus = 0 Then
'Delete the old files
Kill (LocalFilePath)
'Save temp files to replace old files
'TempFileNEW.SaveAs Filename:=LocalFilePath, FileFormat:=xlTypePDF
MyFSO.CopyFile Source:=TempFileNEW, Destination:=LocalFilePath & Finalname
'Now delete temp files
Kill (TempFileNEW)
'Now update excel sheet to show download passed
MsgBox "File Downloaded. Check in this path: " & LocalFilePath
With Sheets("Background")
.Range("F" & rw) = tstamp
.Range("G" & rw) = "SAT"
.Range("C" & rw) = Format(Now, "ww", vbWednesday)
.Range("E" & rw) = Format(Now, "yy")
End With
'If download failed, update excel to show- old files should NOT have been deleted yet but the temp file should be deleted
Else:
MsgBox "Download File Process Failed"
Sheets("Background").Range("G" & rw) = "FAIL"
Kill (TempFolderOLD)
End If
'If the original criteria were met and the download was not necessary, say so
Else
MsgBox "The most up to date pub has been downloaded"
End If
Next rw
End Sub