因需求希望圖片能從A2列依序橫向插入,網路上只找到縱向插入。
列出給各位參考,希望能優先修改此程式。
先在此感謝回答者。
Sub 插圖()
sPath = "C:\Users\Administrator\Desktop\APP\"
sFile = Dir(sPath & "*.jpg")
Range("A1").Select
Cells.RowHeight = 100
Rows(ActiveCell.Row & ":" & ActiveCell.Row).ColumnWidth = 18
Do While sFile <> ""
ActiveSheet.Shapes.AddPicture sPath & sFile, True, True, 0, iTop, 90, 90
iTop = iTop + 100
sFile = Dir()
ActiveCell.Offset(1).Select
Loop
End Sub