I am trying to write a simple macro to insert a picture - but not well versed with VBA so I'm having some trouble. I am able to insert the picture, but I can't control the cell it pastes to. I want it to paste to the cell I currently have selected, but now it pastes to the same place regardless of the currently selected cell. Any thoughts? Thanks!
Here's what I have. I have also tried minor variations, all of which end up with the picture going to the same constant cell.
ActiveCell.Offset(0, 0).Select
ActiveSheet.Pictures.Insert ( _
"C:\Users\Andrew\Pictures\Test.jpg")
Here's what I have. I have also tried minor variations, all of which end up with the picture going to the same constant cell.
ActiveCell.Offset(0, 0).Select
ActiveSheet.Pictures.Insert ( _
"C:\Users\Andrew\Pictures\Test.jpg")