軟體:EXCEL 版本:OFFICE 365 之前問過一個類似的問題,後來自己有嘗試成功 但是發現這其實只是LINK到自己電腦圖片的路徑 有沒有人可以教一下怎麼修正成真的夾帶圖片進EXCEL檔案 Private Sub CommandButton1_Click() X = ActiveCell.Width Y = ActiveCell.Height fufilename = Application.GetOpenFilename With ActiveSheet.Pictures.Insert(fufilename) .ShapeRange.LockAspectRatio = msoFalse .ShapeRange.Height = Y .ShapeRange.Width = X End With End Sub