Excel Macro - Pastespcecial problem

Joined
Aug 21, 2008
Messages
1
Reaction score
0
Hi Frnz,
I have a problem. Whenever i use pastespecial method, data will be pasted as picture.
i have used the fillowing statement to copy the data
InvSheet.range("A1:M5").PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=False

where InvSheet is the sheet object of Sheet1

Please let me know how to solve this.
 
Joined
Dec 5, 2008
Messages
6
Reaction score
0
Hello,

Can you show me how you create object of Sheet1 named as InvSheet?
What kind of data are you trying to copy?

Try the other method:
OtherSheet.Range("A1:M5").Copy InvSheet.Range("A1")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top