我尝试将在线图片插入Excel工作表中的单元格。我使用的代码在Excel 2016 for Windows中完美运行。但不是在Excel 365 for MAC中:没有显示图片(我已经尝试将所有MAC安全选项设置为最低选项)。
谁可以给我一个暗示?
就像我下面的代码一样,(动态)网址在表格中(" grafisch")。范围(" B87"),图片放在表格中(" ; Sjabloon")范围(" A3"。)
网址基本上是:" https://www.adress.com/pict"并且它不以像.jpg或.png
这样的文件类型结尾Sub Imginsert()
Sheets("Sjabloon").Range("a3").Select
Dim cellValue As String
Dim pic As Picture
cellValue = Sheets("grafisch").Range("B87").Value
If cellValue = "" Then Exit Sub
Set pic = ActiveSheet.Pictures.Insert(cellValue)
pic.Name = "Picture1"
End Sub