+ Reply to Thread
Results 1 to 16 of 16

Copying part of a worksheet in one workbook to another workbook

  1. #1
    Forum Contributor
    Join Date
    03-30-2010
    Location
    Manchester England
    MS-Off Ver
    Excel 2010
    Posts
    992

    Copying part of a worksheet in one workbook to another workbook

    The code below works some times but not others. The circumstances seem much the same for both situations.
    I clearly need to write more robust code and would welcome advice as to how to do this.

    [CODE][/Sub Button1_Click()
    'On Error Resume Next
    Range("Orders_In_Table").Clear

    Range("Vista_In_Table").ClearFormats
    Range("Vista_In_Table").ClearContents
    Windows("Vista.xlsx").Activate
    With ActiveSheet
    x = .Range("A4").CurrentRegion.Rows.Count + 1
    .Range(Cells(2, 1), Cells(2 + x, 9)).Copy
    End With
    Windows("VistaGangV3.5.xlsm").Activate
    Sheets("Vista_In").Activate
    Range("A8").Activate
    ActiveSheet.Paste


    PasteDown "Orders_In"
    Mysort "Orders_In", "Width", "Shape", "colours", "Height"
    PasteDown2 "Orders_In", 2
    On Error GoTo 0
    End SubCODE]
    The two workbooks are opened in the same instance of Excel before the code is activated in VistaGang v3.5.

    Sometimes I get a message asking if I want to replace the destination cells. I infer from this that there is some uncertainty about which sheet is active when.
    I need this to be idiot proof and hope that somebody can help
    John

  2. #2
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    Hi John
    You ask a very, very open question, and without more detail of what you are doing, sample data, or a file it is very difficult to answer with more than just a few basic points...

    _1) You use AcriveSheet a lot, - maybe you have the code from a macro recording? You do not need to use it so much, and generally better practice not to reference things using Active things. So start off by dimensioning things and reference things more explicitly.

    _2). If you want to avoid being asked by excel ( assuming you would answer with yes ) then you put a code pair around the bit ...

    Please Login or Register  to view this content.

    _3 ) It is very bad practice to use On Error Resume Next for large bits of code..you should only use, if at all, in small parts of code for very predictable errors. See here:
    http://excelmatters.com/2015/03/17/on-error-wtf/
    https://app.box.com/s/8zkhjcmbxrqnlnexqpktuy41clgqm4zo

    _ 4 ) The following code may not work, as i do not know exactly what you or doing or have any files, Data, or know what named ranges you are using, I do not understand the last bit of your code ( looks like you are calling some procedures) , etc. etc. , but it may help demo a few basic points.

    Please Login or Register  to view this content.

    Alan
    '_- Google first, like this _ site:ExcelForum.com Gamut
    Use Code Tags: Highlight code; click on the # icon above,
    Post screenshots COPYABLE to a Spredsheet; NOT IMAGES PLEASE
    http://www.excelforum.com/the-water-...ml#post4109080
    https://app.box.com/s/gjpa8mk8ko4vkwcke3ig2w8z2wkfvrtv
    http://excelmatters.com/excel-forums/ ( Scrolll down to bottom )

  3. #3
    Registered User
    Join Date
    10-14-2013
    Location
    Manchester England
    MS-Off Ver
    Excel 2010
    Posts
    31

    Re: Copying part of a worksheet in one workbook to another workbook

    Alan
    Thank you very much for your response which was just what I was hoping for.

    This particular problem was just an instance of the sort of difficulties I am coming across more often as the complexity of my projects increases.
    I am becoming more and more aware of the limitations of my amateur coding and of my need for advice like yours.
    It will take me a bit of time to absorb your post but I will respond again then.
    You were right the last bit of code was just a series of calls to other procedures and not really part of my problem.

    The On error resume next was there to cover the situation where one or some of the named ranges were empty. I thought I had to put the On Error Goto 0 at the end of the procedure.
    Once again many thanks
    John

  4. #4
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    Hi John,
    Quote Originally Posted by LoftySuth View Post
    ....becoming more and more aware of the limitations of my amateur coding and of my need for advice like yours.....
    Once again many thanks
    You’re welcome. ( Actually i am only just really a beginner myself, or rather part time VBA Amateur)
    Alan

    BTW. then while I am here
    Quote Originally Posted by LoftySuth View Post
    ......
    The On Error Resume Next was there to cover the situation where one or some of the named ranges were empty. I thought I had to put the On Error Goto 0 at the end of the procedure....
    The whole On Error Goto Stuff is a made IMO a bit unnecessary tricky to explain because it uses strange terms and weirdly worded Statements. The second link I gave on Errors is my own notes i wrote to try to get it clear in my thick head. ( The first link is better, written by a Pro )
    The Error Statement On Error Resume Next ( which is also one of two VBAError Handlers” ) almost says what it does. In simple English it means VBA carries on at the line after the Error should have occurred. So it suppresses it. VBA goes happily on ignorant of what happened ( or didn’t ). That could be then a disaster. It is like first thing in the morning at work covering up your smoke detector in the canteen and pulling the plug on the live link to the Fire station for the whole Day just in case anyone ever burns some Chips.
    On Error Goto 0 ( which is another one of four main Error Statements ) is a stupidly worded Statement IMO. It goes nowhere as far as anyone knows. It should be written Turn The Error Handler Off, which in simple English is what it does
    So coming back to the Chips. If you do not mind burnt chips ( very unhealthy but i like the taste of burnt chips )

    Please Login or Register  to view this content.

    In 99% of cases you can find a better way than using an Error Handler for an expected error. There is almost always a way to check for the thing beforehand that might cause the error. –

    Please Login or Register  to view this content.
    The other Error Handler, On Error Goto Somewhere does usually go to somewhere ( you must specify somewhere ) and then as comparison is often done at the start of the day to take care of all unexpected errors. As a comparison it is as if you choose not to rely on the default Error handling ( which Tells you what / where caught fire and organising immediate building evacuation ), but instead for example you choose in the case of a fire to grab the cat and grab your back - up discs before you leave the building when ( or if at all ) at your own discretion**.

    Please Login or Register  to view this content.
    There are a few more subtle points then that ...( .....**like instead of leaving the building you can put the fire out and / with another IMO stupidly written Error statement On Error Goto -1 .......or possibly repair the damage ...)... but that is the basics
    Last edited by Doc.AElstein; 10-31-2015 at 07:01 PM.

  5. #5
    Forum Contributor
    Join Date
    03-30-2010
    Location
    Manchester England
    MS-Off Ver
    Excel 2010
    Posts
    992

    Re: Copying part of a worksheet in one workbook to another workbook

    Thanks for your message. I had seen the post and have been using it to try out ideas all weekend. (on and off).
    Please Login or Register  to view this content.
    ' Simple copy paste without using Active stuff
    wsVIn.Range(Cells(2, 1), Cells(2 + x, 9)).Copy 'Copy to Clipboard. Do Copy Paste in two lines allowing selecting particular version of Copy held in Clipboard
    wsV3_5.Range("A8").PasteSpecial Paste:=xlPasteValues 'Being very Explicit here with an extra line enabling us to Paste Special with arguments to make sure the correct version from Clipboard is copied

    '
    PasteDown "Orders_In"
    Mysort "Orders_In", "Width", "Shape", "colours", "Height"
    PasteDown2 "Orders_In", 2
    'On Error GoTo 0
    End Sub[/CODE]
    I realised that you had dimensioned wsVin as a worksheet but set it as a workbook. I corrected this by setting it
    with the line
    Please Login or Register  to view this content.
    this was accepted.
    The line
    Please Login or Register  to view this content.
    was also accepted but the line
    Please Login or Register  to view this content.
    was rejected with the message Method Range of worksheet failed.
    and there I got stuck because if the other two lines were OK I cant see why this one is not. As I wrote I could see that I had muddled worksheets and workbooks again.

    When this problem is sorted I will still have a more fundamental one which is that the Vista.xlsx file is from an external source. I cannot know the name of the sheet we need in advance, (which is why I was trying ActiveSheet.)
    Perhaps I will have to rename it first.
    I will be very interested to see your comments.
    John

  6. #6
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    Hi John,
    I had this reply for you some time ago, but could not get access to ExcelForum, like many... Hope I can get this in quick before the site is down again...


    As i mentioned your original question was very open, and not knowing exactly what you are doing I just tried to give some quick general ideas, not a specific solution.

    _1 ) But the typo with the Workbook / Worksheet was stupid of me, sorry about that. Here some variations of what it should have been...

    Please Login or Register  to view this content.

    _2 ) It was also a bit careless of me in quickly making a suggestion to do this as well
    Please Login or Register  to view this content.
    _ again in haste i was just suggesting not to rely on the implicit default of
    Range
    ( which usually### refers, by default, to the Active sheet if the code is in a Normal Module or if the code is in a sheet module than refers, by default to that Sheet. ( ### Actualy it is a bit more complicated - In a normal module, an unqualified Range equates to Application.Range, not ActiveSheet.Range, which is usually the Active sheet
    http://www.mrexcel.com/forum/excel-q...ml#post4038308
    but that all starts getting involved ( and out of my depth !))

    So anyway, I was just demonstrating the idea that it is better, generally, to always qualify the Range, and to do something like this instead:
    Ws.Range

    But here in the particular full code line, the same applies to Cells , so I should have done this

    wsVIn.Range(wsVIn.Cells(2, 1), wsVIn.Cells(2 + x, 9)).Copy

    or this

    Please Login or Register  to view this content.
    And you can “mix” the conventions

    Please Login or Register  to view this content.
    The problem is the area is so vast i could write a book, and even then not cover everything.
    Here is a good Blog, and a couple of good Threads on Range referencing
    http://excelmatters.com/referring-to-ranges-in-vba/
    http://www.excelforum.com/excel-new-...to-arrays.html
    http://www.excelforum.com/excel-prog...e-objects.html

    Alan

    BTW.. worth checking this ( your settings, or User Control Panel )
    http://www.excelforum.com/usercp.php
    to check replies, because of the forum software problems with, amongst other things E-mail Notifications of replies

    I am not sure when I can reply further – The ExcelForum Software is freaking out with me again just now and i have virtually no access )

  7. #7
    Forum Contributor
    Join Date
    03-30-2010
    Location
    Manchester England
    MS-Off Ver
    Excel 2010
    Posts
    992

    Re: Copying part of a worksheet in one workbook to another workbook

    Alan
    I am still stuck, though a little further down the line. Still, I think, because excel does not know which workbook I mean (even though I think I have told it!)
    I hope you have some time to help.
    Here is the code ( much indebted to you)
    Please Login or Register  to view this content.
    I have left the on error lines in despite your advice because it seems the neatest way of dealing with the error which happens if the range is empty.
    "Orders_In_Table" and "Vista_In_Table" are both dynamic named ranges

    "OpenWorkbookUsing FileDialog is a routine to open up the usual windows way of browsing for and opening a file. FilePathName is the file path leading to the folder containing the files I want to browse

    I get the error Method Range of Object_Global failed, at lines marked ***which usually means a misspelt name or other error of this sort, but not this time.

    If I replace VistaIn by Workbooks("VistaGangV3.5.xlsm") I get the same error.
    Although the second workbook is not evident in this snipit it is later in the procedure where it provides the range to paste in.
    I have also tried providing the full filepath to VistaGang.... but thyis is also rejected. Where am I going wrong ?
    John

  8. #8
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    Hi John,
    Assuming you are using the With VistaIn bit because you are referencing those Ranges you give in the Workbook VistaIn, then you need the extra . ( Dot ) bit. - That is basically what the With End With pair means : - everything within this With End With pair where you type .Something is seen by VBA as VistaIn.Something.
    But you are allowed to reference other things within the With End With pair as well without using the . ( Dot ) before. Then they “go” where you specifically reference them. So in your code snippet you are referencing
    Range
    Without giving a specific Workbook, which will go to the default, as I explained in post #6.
    So I am guessing that the code looks for those named ranges somewhere other than the workbook VistaIn, and errors as it does not find them there

    So I guess you actually wanted to do this

    Please Login or Register  to view this content.

    Alan

    P.s. Did you get Email Notification of this reply??
    Last edited by Doc.AElstein; 11-04-2015 at 08:24 PM.

  9. #9
    Forum Contributor
    Join Date
    03-30-2010
    Location
    Manchester England
    MS-Off Ver
    Excel 2010
    Posts
    992

    Re: Copying part of a worksheet in one workbook to another workbook

    Alan,
    No, no email as yet, but thanks for your reply.

    I had realised that I had got in a mess trying to change your original code so I stopped and started again. As follows:-
    Please Login or Register  to view this content.
    I think this is essentially the same as your above code
    I have left the dots out because I don't think they should be used when referring to a named range. I think that named ranges are the Property of a workbook. They behave that way when you are using them in a worksheet at any rate.

    In practice with or without the dots both your doce and mine result in the same error message.

    Yours in hope
    John

  10. #10
    Forum Contributor
    Join Date
    03-30-2010
    Location
    Manchester England
    MS-Off Ver
    Excel 2010
    Posts
    992

    Re: Copying part of a worksheet in one workbook to another workbook

    I have discovered that if, just before I run the code I bring Sheet("Orders_In") to the front, then it works. (With no stops before the named ranges)
    In any other situation it does not work.
    This is all true even if I replace
    With ThisWorkbook with
    With Workbooks("VistaGangV3.5.xlsm").

    Surely I don't have to make Sheets("Orders_In") active before any code will work ?
    John

  11. #11
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    Hi John,

    I did notice i may have got it a bit wrong!!! ( I think ). Again confusing workbooks and worksheets a bit !!

    You cannot reference a Range usually with
    Workbooks(" " ).Range !!!!

    I forgot the in-between sheet reference!!!

    Workbooks(" " ).Worksheets(“ “).Range

    So I thought you may need in that With End With pair

    .Worksheets(“ “).Range


    But, as you said, there may be some subtitles with named ranges that i do not understand. I have never used named ranges.
    I may be getting a bit of my depth here. Especially working “blind” at a distance.

    Maybe i need to try to run your code with your Workbooks. I am not sure how practical that may be due to the Paths you are using etc.

    I will try to look again later if i have time. But it think i may be losing this one a bit, Sorry.

    I think it is the named Range stuff that is somehow putting a spanner in the works , and i lack experience there: How about rewriting your code not using Named ranges first, get that working, then go on to using named ranges?

    Alan

  12. #12
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    Hi John,

    One quick thing I noticed.

    While experimenting for you I found that sometimes something of this form would not work

    Range("ANamedRange").Clear

    Strangely , in those cases, an alternative form of that code line did work

    ["ANamedRange"].Clear

    I have not the slightest idea why this is the case – I only learnt about this alternative yesterday.

    http://www.mrexcel.com/forum/excel-q...dangers-2.html

    And in that Thread both these lines always worked. So I am very Puzzled!

    Alan

  13. #13
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    Further, there could be some subtle problems related to where you have the Code, That is to say in a Sheet Module, or a Normal Module.
    This is coming back to the Range referencing Theme
    And that may be further complicated if you are trying to reference named Ranges in different Workbooks.
    All very confusing!!

    If you get me a couple of workbooks, give a full code, and explain again exactly what it is you are trying to do I may be able to take a better look at this issue.

  14. #14
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    Quote Originally Posted by j_Southern View Post
    I have discovered that if, just before I run the code I bring Sheet("Orders_In") to the front, then it works. (With no stops before the named ranges)
    In any other situation it does not work.
    This is all true even if I replace
    With ThisWorkbook with
    With Workbooks("VistaGangV3.5.xlsm").

    Surely I don't have to make Sheets("Orders_In") active before any code will work ?
    .....
    I have sometimes come across this sort of thing before. Often Activating a sheet and possibly selecting the first cell in a sheet sometimes overcame problems, but i never understood why !! Or there could be some connection to my point in Post #13 there!! Again, being very careful and Explicit in Range referencing seems to be very important. – by Activating a sheet (bringing to the front )you change where a
    Range
    Reference goes!!

  15. #15
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    _ ... just another note in passing.... there could be in addition a problem with "Scope" in your code, depending where your Code is........

    http://www.mrexcel.com/forum/excel-q...ml#post4332606

  16. #16
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Copying part of a worksheet in one workbook to another workbook

    Hi John,
    So I think i have it ( and probably you too by now! )

    So I made a new workbook and called it “VistaGangV3.5.xlsm”

    Using the Names manager In Workbook “VistaGangV3.5.xlsm” I
    _ 1 ) defined "Orders_In_Table" as ReferTo Sheet1!$A$1
    _ 2 ) defined " Vista_In_Table" as ReferTo Sheet1!$A$2

    I wrote this code, put it in a normal Module, and ran it.

    Please Login or Register  to view this content.
    As long as any sheet in workbook “VistaGangV3.5.xlsm” is selected, the code works , without error, and gives this in “Sheet1” of “VistaGangV3.5.xlsm”

    Using Excel 2007
    Row\Col
    A
    1
    Somefink in Range("A1")
    2
    Somefink in Range("A2")
    Sheet1

    _ ..............

    If I try to run the code with any other Workbook selected then I get the same error you did! That makes sense as VBA will look for those named ranges in the Active Workbook rather than Workbook “VistaGangV3.5.xlsm” ( and of course will not find them!! ) So I think that answers this Question
    Quote Originally Posted by j_Southern View Post
    I have discovered that if, just before I run the code I bring Sheet("Orders_In") to the front, then it works........Surely I don't have to make Sheets("Orders_In") active before any code will work ?
    John
    But further you do not have to make any particular sheet in a File active if you use the following Code version.
    It will work regardless of what Workbook Sheet is Active ( Up Front ) as long as Workbook “VistaGangV3.5.xlsm” is open

    Please Login or Register  to view this content.
    _ ....

    Let me know if you need help. I think i have learned a bit now about handling named ranges, etc
    Alan
    Last edited by Doc.AElstein; 11-05-2015 at 08:49 AM.

+ 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. [SOLVED] I would like to change part of a workbook/worksheet reference with data from another cell.
    By hintonm1811 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 02-11-2014, 11:55 AM
  2. Replies: 11
    Last Post: 12-13-2013, 12:38 PM
  3. Copy Data from Closed workbook (bbb.xls) to Open workbook (aaa.xls) (Part 2)
    By alexnkc in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-23-2013, 02:06 AM
  4. Replies: 2
    Last Post: 05-01-2013, 06:17 AM
  5. [SOLVED] Copying worksheet from another open workbook using variables, paste to active workbook
    By sanpedro_nz in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-08-2012, 08:25 AM
  6. Copying named worksheet from a workbook to a new workbook
    By s999 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-16-2010, 01:09 PM
  7. [SOLVED] Copying A Worksheet From Each Open Workbook to an new Workbook
    By carl in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-03-2006, 01:40 PM

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