AHMADIT986
New Member
- Joined
- Oct 21, 2015
- Messages
- 2
hi everyone
when I use macro for copy and paste photo in excel 2013 I received error 1004
i click debug and just click F5 without any change ,after that macro complete command.
what should I do to avoid this problem
when I use macro for copy and paste photo in excel 2013 I received error 1004
i click debug and just click F5 without any change ,after that macro complete command.
what should I do to avoid this problem
Code:
Sub Tester() Sheets("STATS").Select
Range("B223:K244").Copy
Sheets("photos").Select
Range("b223").Select
ActiveSheet.Pictures.Paste Link:=True
Application.CutCopyMode = False
End Sub