Maybe you are looking for this to add the picture on top of C3
Sub test()
Dim YourPic As Picture
With ActiveSheet.Range("C3")
Set YourPic = .Parent.Pictures.Insert("C:\Data\Picture1.jpg")
YourPic.Top = .Top
YourPic.Width = .Width
YourPic.Height = .Height
YourPic.Left = .Left
End With
End Sub
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"ironhydroxide" wrote in message
...