我最近有爬文有看到了一個可以在某個欄位打入圖片檔名就可以插入想要插入的圖片,可是確不知道如何讓插入的圖片是固定的大小。
我想讓每一張圖片的大小是高5.3公分、寬5.8公分。vba碼如下:
Sub Put_Picture()
On Error Resume Next
For i = 1 To 14
mm = Format(Cells(i, 11), "0")
With ActiveSheet.Pictures.Insert(ThisWorkbook.Path & "\" & mm & ".jpg")
.Height = Cells(i, 12).Height
.Width = Cells(i, 12).Width
.Top = Cells(i, 12).Top
.Left = Cells(i, 12).Left
.Height = 153.3
.Width = 153.7
End With