軟體:OFFICE 2010 EXCEL
請教各位前輩,關於參照儲存格A的產品編號 去資料夾內抓取圖片
(儲存格僅包含圖片的部分字串)
若儲存格(cells(i, j)內文字為產品編號8888,但照片資料夾內欲抓取的
圖片名稱為:清潔劑-8888-20200715
請問以下VBA的綠色的函數那段該怎麼修正,謝謝
以下為部分程式碼:
Cells(X, Y).Select
ActiveSheet.Pictures.Insert( _
ThisWorkbook.Path & "\照片資料夾\" & Cells(i, j) &
".JPG").Select '
Selection.ShapeRange.LockAspectRatio = msoTrue
Selection.ShapeRange.Height = 100
Selection.ShapeRange.Width = 100#
Selection.ShapeRange.Rotation = 0#