试图制作一个在 Excel 中逐步插入 3 张图像的宏
一个工作表(图片)包含 A 列第 1-3 行中的图像 URL
另一个工作表(输出)应该水平输出图像。
Sub testinsertpix()
Dim i As Integer
Dim link As String
For i = 1 To 3
link = Worksheets("pics").Cells(i, "A").Value
Cells(1, i).Select
ActiveSheet.Pictures.Insert (link)
Next i
End Sub
它确实插入了第一张图片,但是当循环到达第二张图片时失败。
“图片类的插入方法失败”
请帮帮忙?