Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub Macro1()
Dim Gif As Object
Set Gif = ActiveSheet.Pictures.Insert( _
"C:\My Documents\My Pictures\MyGIF.gif")
With Gif.ShapeRange
.IncrementLeft -33#
.IncrementTop 15.75
End With
End Sub
Sub InsertGif()
ActiveSheet.Pictures.Insert ("C:\My Documents\My Pictures\MyGIF.gif")
End Sub
[code]
and the picture will be inserted in the Activecell.
OR
[code]Sub InsertGif()
[D15].Activate
ActiveSheet.Pictures.Insert ("C:\My Documents\My Pictures\MyGIF.gif")
End Sub