All right, my last attempt to get help on this topic:
I have a code for copy/pasting a picture from one sheet to another:
If I select the picture (which is in fact named Picture 2) MANUALLY and then run the macro, it works. However, if anything else is selected when it starts to run, it copy/pastes that instead. This is bad A) because it should be selecting the picture per the first line of code and B) it's part of a much longer macro and it will take a lot more time if I have to break the macro up and manually select the picture in the middle. Can anyone help me figure out how to make it so it's *actually* selecting the picture before doing everything else?
Thanks!
I have a code for copy/pasting a picture from one sheet to another:
Code:
Sub Picsy()
Sheets("Rough Draft").Shapes.Range(Array("Picture 2")).Select
Selection.Copy
Sheets("Final Copy").Select
Range("D1").Select
ActiveSheet.Paste
End Sub
If I select the picture (which is in fact named Picture 2) MANUALLY and then run the macro, it works. However, if anything else is selected when it starts to run, it copy/pastes that instead. This is bad A) because it should be selecting the picture per the first line of code and B) it's part of a much longer macro and it will take a lot more time if I have to break the macro up and manually select the picture in the middle. Can anyone help me figure out how to make it so it's *actually* selecting the picture before doing everything else?
Thanks!