Inserting a jpg image in Excel

xs2sandeep

New Member
Joined
Feb 19, 2013
Messages
15
I want to insert a image in MS excel "A6" name to be mentioned in "B6" from a specified file and folder location on desktop of my computer.

Can anyone help me in writing a macro for the same.

thanks
Sandeep
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Code:
Sub imageload() 
Dim cella, shp As Shape
    fpath = "C:\users\name\Desktop\"
    nfile = fpath & range("B6") & ".jpg"
     ActiveSheet.Pictures.Insert(nfile).Select
     Set shp = Selection.ShapeRange.Item(1)
     With shp
          .LockAspectRatio = msoTrue
          .Width = 50
          .Height = 50
          .Cut
      End With
      range("A6").PasteSpecial
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,787
Messages
6,121,561
Members
449,038
Latest member
Guest1337

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top