if or vlookup

  • Thread starter Thread starter nivek05
  • Start date Start date
You must have the images stored on the same worksheet when using John's code.


Gord Dibben MS Excel MVP
 
Sub copyshape()
With Sheets("sheet14")
..Select
ActiveSheet.Shapes("myshp").Copy
Application.Goto Sheets("sheet13").Range("b12")
ActiveSheet.Paste
End With
End Sub
 
Back
Top