I have image (\"picture\") in ones of my worksheets (\"mechanic\"). How to copy this image to another worksheets (\"character\"), using VBA code? I try this:
Sub
Use this code:
Sub copy() Worksheets("mechanic").Shapes("Picture").Copy Worksheets("character").Range("A8").PasteSpecial End Sub