美文网首页
Excel图片链接转为图片展示

Excel图片链接转为图片展示

作者: yellow_han | 来源:发表于2020-03-03 13:19 被阅读0次

1、excel另存为宏的工作簿

2、alt+F11打开视图输入以下代码,然后文件保存

i=2表示从第二行开始便利。Cells(i, 6)指的是图片链接所在位置(列)。Cells(i, 9)指的是图片展示的位置(列)。
Sub 宏11()
Application.ScreenUpdating = False
For i = 2 To Range("A65536").End(xlUp).Row 
 If Cells(i, 6) <> 0 Then
Cells(i, 9).RowHeight = 100 '设置行高为100
Cells(i, 9).Select
ActiveSheet.Pictures.Insert(Cells(i, 6).Value).Select
Selection.ShapeRange.LockAspectRatio = msoTrue
Selection.ShapeRange.Height = Cells(i, 9).Height '设置图片高度为单元格行高
Cells(i, 9).ClearContents
 End If
Next
Application.ScreenUpdating = True
End Sub

相关文章

网友评论

      本文标题:Excel图片链接转为图片展示

      本文链接:https://www.haomeiwen.com/subject/mdraactx.html