+ Reply to Thread
Results 1 to 44 of 44

I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

  1. #1
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Thumbs up I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Dear All,

    I am not that much familier with VBA. i am getting error as Run Time error '1004' Microsoft excel cannot paste the data in following VBA code.

    Sub copydata()
    Dim folderpath As String, filepath As String, filename As String
    folderpath = "C:\Users\09395\Desktop\Final CFCM\"
    filepath = folderpath & "*.xls*"
    filename = Dir(filepath)
    Dim lastrow As Long, lastcoloumn As Long
    Do While filename <> ""
    Workbooks.Open (folderpath & filename)
    lastrow = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
    lastcolumn = ActiveSheet.Cells(1, Columns.Count).End(xlToLeft).Column
    Range(Cells(2, 1), Cells(lastrow, lastcolumn)).Copy
    Application.DisplayAlerts = False
    ActiveWorkbook.Close
    erow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
    ActiveSheet.Paste Destination:=Worksheets("Sheet1").Range(Cells(erow, 1), Cells(erow, 47))
    filename = Dir
    Loop
    Application.DisplayAlerts = True
    End Sub
    Last edited by Amittapre; 01-30-2017 at 01:37 PM.

  2. #2
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Can anyone reply please i am egerly waiting for reply.

  3. #3
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Please read the forum rules, especially #3 about using code tags.

    I think I misjudged the issue, so I'm changing this post, I recommend specifying the workbook you are using, and avoiding "active" where possible when working with multiple workbooks. Also, you don't need to specify the whole destination range, just the first cell to paste in, the paste area should match the source. Try this modification:



    Please Login or Register  to view this content.
    Last edited by Arkadi; 01-30-2017 at 12:58 PM.
    Please help by:

    Marking threads as closed once your issue is resolved. How? The Thread Tools at the top
    Any reputation (*) points appreciated. Not just by me, but by all those helping, so if you found someone's input useful, please take a second to click the * at the bottom left to let them know

    There are 10 kinds of people in this world... those who understand binary, and those who don't.

  4. #4
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @ Arkadi,

    I explicitly ask you, where is the "Option Explicit", you should have included in your proposed solution!!!

    Please stop testing my temper.LOL

    @Amittapre,

    Please adhere to Arkadi's request to Use code tags around code.

    Posting code between [CODE]Please [url=https://www.excelforum.com/login.php]Login or Register [/url] to view this content.[/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Click on Edit to open your thread, then highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here

    Regards.
    Please consider:

    Be polite. Thank those who have helped you. Then Click on the star icon in the lower left part of the contributor's post and add Reputation. Cleaning up when you're done. If you are satisfied with the help you have received, then Please do Mark your thread [SOLVED] .

  5. #5
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @ winon, ouch! You got me again.... I strictly adhere to using option explicit in my own code, yet often forget to use it when providing solutions MY BAD! I have edited my post accordingly

  6. #6
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Noted your point...
    Thanks for solution. Its working

  7. #7
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Yes winon. Thanks for suggestion . Point noted.

  8. #8
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Hi Arkadi,

    Can you help on below query.
    1. I want to copy till column 9. ie. Till I. but as per codes it is selecting whole row so where i have to make changes in code.

    Thanks in advance.

  9. #9
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    This line:

    Please Login or Register  to view this content.
    finds the last column, and then that is what gets used for the copy... If you don't want all the columns, then you could simply change that line to:

    Please Login or Register  to view this content.
    That way the copy code will use column 9 as the last one.

    Please take a moment to edit your first post to include code tags for the code? Both Winon and I have asked this before, it will make it easier other readers in the future.

  10. #10
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Hi Arkadi,

    Now i am trying copy columns from 9 to till end but it is not happening properly. Code is as follows. Can you please help me out
    Please Login or Register  to view this content.

  11. #11
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    "Not happening properly" does not help me very much to see what is wrong?

    but this line of your code:
    Please Login or Register  to view this content.
    should be
    Please Login or Register  to view this content.
    because the offset just makes it 1 row below the last row with data, and when you use 9 it means it pastes too low (9 rows below last with data)

  12. #12
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    I want to copy from column 9 to column 16 (ie. Last column). Total excel in folderpath is 15 & Number of records to be copy are more 500 but micro copying just 64 or 62 records. Please advice.

  13. #13
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Hello Amittapre,

    Your reply in Post#15 is noted, and I have subsequently decided to remove the request for Code Tags in you first post.

    Thank you!
    Last edited by Winon; 03-21-2017 at 05:51 PM.

  14. #14
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    [QUOTE=Amittapre;4571441]Dear All,

    I am not that much familier with VBA. i am getting error as Run Time error '1004' Microsoft excel cannot paste the data in following VBA code.
    Please Login or Register  to view this content.

  15. #15
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Winon i am not able to modify the post so i have reply with quote

  16. #16
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    How about:

    Please Login or Register  to view this content.
    It is just a quick guess, not tested.
    Last edited by Arkadi; 03-22-2017 at 07:33 AM.

  17. #17
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Hello Amitappre,

    Regarding your PM "Re: Please understand the urgency"

    Winon,

    Atleast understand the urgency of Work. how to can you tell to stop reply. This one kind of Ignorance doing by you to individual. Kindly confirm with the steps how to change the original post as i have tried thrice. Atleast check once after that i have reply as per forum rule or not. Not expected. Feeling demotivated.
    Your response to my Moderation in your Thread, was sufficient and does not call for this kind of an approach via a PM. Arkadi has, and is doing his best to assist you with your issue, and if it was that "URGENT", you would already by now have given him some kind of feedback.

    Personally I don't take kindly to your way of trying to coercing me to URGENTLY attend to your issue. I also have no doubt in Arkadi's capabilities, and he should be able to solve your issue. Please also understand that I am working on many other Threads, and afford each my free time, in an order I deem fit.

    If your issue is really that URGENT, why not consider posting it in the Commercial Forum, with a reference to this Thread?

    Regards.

  18. #18
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @ amittapre: if you dont follow forum rules then you can expect to have your thread put on hold. If it is so important then you would take the time to follow them. We do this 100% for free, giving our time to help others like you, and we enjoy doing it. If you find it necessary to be disrespectful, then we will not be motivated to help.
    You did not answer my post so I dont know if it helped or not.... Respond with details of what is wrong or provide a clear example.
    @Winon, I appreciate your confidence my friend, and after the way you were spoken to, I am tempted to just stop helping the OP.... that tone is inexcusable! Just say the word and Ill forget about this thread if you wish it.

  19. #19
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @ Arkadi,

    Granted, I am a bit peeved off.

    Thank you for the kind words, however please feel free to use your own good judgement and prerogative.

    Thank for the support my Friend.

    Kind regards.

  20. #20
    Registered User
    Join Date
    04-28-2014
    Location
    Florida
    MS-Off Ver
    Excel 2007, 2010, 2011 Mac. 2013,2016. I use 2011 and 2016 the most
    Posts
    90

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Also in line #6 "coloumn" is spelled wrong. Option Explicit

  21. #21
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Hello Jamesera27,

    Nice Catch Indeed!

    Thank you.

  22. #22
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @Jamesera27 Good observation!
    @Winon I will wait to see what OP says. My heart wants to help anyone who needs it but I am loyal to my friends also and they must be respected especially when they are right.

  23. #23
    Registered User
    Join Date
    04-28-2014
    Location
    Florida
    MS-Off Ver
    Excel 2007, 2010, 2011 Mac. 2013,2016. I use 2011 and 2016 the most
    Posts
    90

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Thanks a lot guys...20 years in the Military will definitely teach us one thing...Attention to detail...LOL. Thanks again

  24. #24
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Hi Arkadi,

    It is showing an error as
    Complile error: Method or Data member not found.
    Yellow Highlighted data showing on Sub copydata () & selected word is Cells in below code
    Please Login or Register  to view this content.

  25. #25
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @Winon,
    i am not denying on Arkadi's capabilities. Arkadi doing best to try help me. My concern was I am not able edit my main(First) post so confirm me steps or else dont stop anyone to help anyone. See i am accepting my mistake that i posted in forum with reading rules but now i am not edit the post so what to do please advice.

  26. #26
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Amittapre,

    Sorry I had not read code very well, yes that line in your code is no good. Which sheet should be used to find erow?:

    Please Login or Register  to view this content.

  27. #27
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Arkadi,

    Now getting error as "Run Time error '1004': Application-defined or object-defined error." on below line code
    Please Login or Register  to view this content.

  28. #28
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Since you are pasting the data in column A, in the row indicated by erow, and when you paste the data will go across the cells, you don't need to specify the full range, just the cell you are pasting in, try this:

    Please Login or Register  to view this content.

  29. #29
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @Amittapre,

    ... or else dont stop anyone to help anyone.
    I don't believe you are qualified to tell me how to go about my actions on this Forum.

  30. #30
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @ Winon, I think that comment sounded worse than it was intended due to a language barrier?
    @ Amittapre, Winon acknowledged that your NEW post with code tags when you could not edit your original was a good solution (in post #13). He then removed the moderation request that asked others not to answer. That is why I continued helping, and for the record Winon works VERY hard to help everyone, not only solving problems, but always with other ideas for improvement. He is an awesome example to us all on the forum, please keep that in mind... his intentions were not malicious, and he did what any of us would have done to be helpful but also to keep order.

  31. #31
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @Arkadi,

    @ Winon, I think that comment sounded worse than it was intended due to a language barrier?
    I must point out however, that I did not find it difficult to understand what he was conveying in other replies.

    Thank you for your loyal support my Friend. Friends like you are hard to find.

    Keep up your good work!

    Kind Regards.

  32. #32
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Amittapre,

    Is this thread solved? Or do you still have problems?

  33. #33
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Arkadi,

    Data paste not properly happening. It is not showing any error but i dont why it is happening properly.

    @arkadi,
    Thanks for your all time help, replies & expert advices

    @Winon,
    I apologies, I accept my mistakes.

  34. #34
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Thank you Amittapre,

    @Winon,
    I apologies, I accept my mistakes.
    Now, that is much better,

    Perhaps we can start afresh, and if you need us to assist you further, please just ask!.

  35. #35
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    I am attaching my excel can you just check & advice me what is wrong with this
    Attached Files Attached Files

  36. #36
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @Winon,

    So nice of you. Thanks for understanding

  37. #37
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Since it relies on a second workbook, it is hard to understand what is wrong... What do you mean by "paste is not working properly"

  38. #38
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    I see some confusing code:
    This means lastrow is calculated based on column 10 (J) in the workbook you open
    Please Login or Register  to view this content.
    This means last column is calculated based on Row 10 of the workbook you open:
    Please Login or Register  to view this content.
    This means you copy a range that starts at J2, and goes to last column and last row:
    Please Login or Register  to view this content.
    Are you sure "10" is correct?? it seems strange to me. I think the paste is fine, and lastrow and/or last column are the problem, and maybe also the first cell of the range you copy.

  39. #39
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Arkadi,
    From users file Data should copy from column J Column & paste done in master file in from A column. But from users file J columns data paste into G/F column.
    User file is as follows A To P respectively
    CIF ID|Agri Income|Non Agri|Father Name|CRS indicia-US|CPP|LOAN FLAG|C CARD FLAG|Entity Type|Entity Account Number|LC CODE|LG CODE|PROMO|SMS ALERT|EMAIL ALERT|FUNDING DETAILS
    I want to copy data from Entity Account Number to FUNDING DETAILS.

  40. #40
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @ Arkadi,

    You make me sick for being correct.LOL

    Since it relies on a second workbook, it is hard to understand what is wrong
    Amittapre, we do not have access to the "other" Workbook.

    Have you tried to open the other workbook before running your Code?

    Also, why don't you Google Copying from a closed Workbook to specific range in active Workbook?

  41. #41
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Quote Originally Posted by Arkadi View Post
    I see some confusing code:
    This means lastrow is calculated based on column 10 (J) in the workbook you open
    Please Login or Register  to view this content.
    This means last column is calculated based on Row 10 of the workbook you open:
    Please Login or Register  to view this content.
    This means you copy a range that starts at J2, and goes to last column and last row:
    Please Login or Register  to view this content.
    Are you sure "10" is correct?? it seems strange to me. I think the paste is fine, and lastrow and/or last column are the problem, and maybe also the first cell of the range you copy.
    Arkadi,
    Thanks now its working fine. U r great yaa

  42. #42
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    Hi Amittapre,

    You see, Arkadi is GOOD!

    Please be so kind as to add to his Reputation by clicking on the Star next to Add Reputation at the bottom left of his post.

    Thank you!

  43. #43
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: I am getting error as "Run Time error '1004' Microsoft excel cannot paste the data

    @ Winon, sadly I don't feel like I'm so good.... every time I had an idea I posted without reviewing ALL of the logic. I should have seen that Row 10 and Col 10 are unusual for lastrow/column calculations. It is of course why sample workbooks can be so useful.
    I do appreciate your comments and support my friend!

    @Amittapre, I'm glad we could finally fix the problem thanks for letting us know!

  44. #44
    Registered User
    Join Date
    01-30-2017
    Location
    India
    MS-Off Ver
    2010
    Posts
    23
    Quote Originally Posted by Winon View Post
    Hi Amittapre,

    You see, Arkadi is GOOD!

    Please be so kind as to add to his Reputation by clicking on the Star next to Add Reputation at the bottom left of his post.

    Thank you!
    Yes winon, I added reputation stars next to comments.

    @arkadi, I must say u r great. I happy to get an chance and learn something new under ur guidance. 😉👍

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Run-time error "1004" : Paste method of worksheet class failed
    By tromo912 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-17-2015, 02:28 PM
  2. Ms-excel error '1004':"Unable to get the Paste property of the Pictures class"
    By japortella in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 03-26-2014, 08:50 AM
  3. "Run-time error 1004" paste method of worksheet class failed
    By Ghostturd in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-20-2013, 10:21 PM
  4. Run-time error "1004" Application defined or object-define-error
    By josros60 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 01-21-2013, 01:14 PM
  5. Error "run-time Error '1004': General Odbc Error
    By D4WNO77 in forum Access Tables & Databases
    Replies: 2
    Last Post: 07-16-2012, 09:55 AM
  6. Excel Macro Error - Run time error 1004 - Paste method of worksheet class failed
    By kvflynn in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-15-2012, 10:51 AM
  7. Array loop producing error "Run time error '1004'"
    By jeskit in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 05-06-2011, 08:56 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1