Any solutions would be greatly appreciated
Mark
Sub InsertPicture()
Dim MyCell As Range
Dim MyPicture As Picture
Set MyCell = ActiveCell
MyCell.Select
Set MyPicture = ActiveSheet.Pictures.Insert("C:\files\sig.gif")
With MyPicture.ShapeRange
.LockAspectRatio = msoFalse
.Height = MyCell.Height
.Width = MyCell.Width
End With
MyCell.Select
End Sub
Change the filename and path as necessary. This works with Excel 2002. I haven't tried it with other versions.
John Walkenbach
For Excel tips, macros, & downloads...
http://j-walk.com/ss
"Mark" <mark.wh...@ntlworld.com> wrote in message news:88d601c16cf0$55d1fae0$9be62ecf@tkmsftngxa03...