Hey Stan,

I think you forgot to mention to create a blank lp.htm file

Also, because my ActiveWorkbook.Path directory has some spaces in it, I received a SQL syntax error. I fixed that by changing:
[VBA]cSQL = cSQL & "INTO " & f & " FROM " & cURL
' To:
cSQL = cSQL & "INTO '" & f & "' FROM " & cURL[/VBA]
I just added single quotes ' before and after the variable f.