以下のコードを使用して、「.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 の指定したセルに挿入するにはどうすればよいですか?