我使用以下代码将“ .jpg”文件添加到我的Excel工作表中:
'Add picture to excel
xlApp.Cells(i, 20).Select
xlApp.ActiveSheet.Pictures.Insert(picPath).Select
'Calgulate new picture size
With xlApp.Selection.ShapeRange
.LockAspectRatio = msoTrue
.Width = 75
.Height = 100
End With
'Resize and make printable
With xlApp.Selection
.Placement = 1 'xlMoveAndSize
'.Placement = 2 'xlMove
'.Placement = 3 'xlFreeFloating
.PrintObject = True
End With
我不知道自己在做错什么,但是没有将其插入正确的单元格中,所以该怎么做才能将该图片放入Excel中的指定单元格中?
呼如林
qq_遁去的一_1