I am trying to insert a picture from my desktop into a specific cell with the same dimensions the cell already has using VBA. I don't know why this is so difficult.
File Location: "C:\Users\barklie.estes\Desktop\timeline.jpg"
Cell Location: I9
Please Help!!
This is the VBA Code I have tried unsuccesfully
File Location: "C:\Users\barklie.estes\Desktop\timeline.jpg"
Cell Location: I9
Please Help!!
This is the VBA Code I have tried unsuccesfully
Code:
Sub xtest()
Range("I9").Pictures.Insert ("C:\Users\barklie.estes\Desktop\timeline.jpg")
End Sub