求助:下载B列图片链接保存到excel表格同文件夹,并用A列命名图片。怎样让他批量完成?

2025-04-06 00:37:17
推荐回答(1个)
回答1:

Private Declare Function URLDownloadToFile Lib "urlmon" Alias "URLDownloadToFileA" (ByVal pCaller As Long, ByVal szURL As String, ByVal szFileName As String, ByVal dwReserved As Long, ByVal lpfnCB As Long) As Long
Sub test()
    p = ThisWorkbook.Path & "\"
    arr = Range("A1").CurrentRegion.Value
    For r = 2 To UBound(arr)
        URLDownloadToFile 0, arr(r, 2), p & arr(r, 1) & ".jpg", 0, 0
    Next
End Sub