+ Reply to Thread
Results 1 to 42 of 42

copy & merge columns based on column across workbooks in master workbook

  1. #1
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    copy & merge columns based on column across workbooks in master workbook

    Hi
    I search for macro to copy & merge columns (SALES & RET) across files . so should search for each column separately and merge duplicates items based on column B .
    notice: sometimes there are items in file for column RET , but it doesn't existed in another file for column SALES so will show empty cells for column SALES as in MASTER file and the same thing there are items in file in column sales ,but it doesn't existed in column RET then will show empty cells in column RET and will have about 10 workbooks in the same folder with same structure as in attaching for three workbooks and every time run macro should create new sheets and increment based on first sheet like REP_2 , REP_3 ..... and so on
    the result in MASTER file as I did it .
    thanks
    Attached Files Attached Files

  2. #2
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    I'm still waiting for anybody has idea to I look for it .

  3. #3
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    You must first well elaborate your need in order there is nothing to guess …

  4. #4
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    so what's not clear for you ?
    did you see the files inside ?
    are the details are poor ?
    what I look for the macro will search for columns (SALES & RET) across files and combine data from all of files and merge duplicates items in MASTER file
    as I said the all of files are existed in the same folder "C:\Users\MY-CAM\Desktop\kalil"
    and when run the macro should create new sheet by increment based on previous sheet . also should deal with blank cells if they are in columns (SALES & RET) across files .

  5. #5
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Question Re: copy & merge columns based on column across workbooks in master workbook


    Quote Originally Posted by KalilMe View Post
    as I said the all of files are existed in the same folder "C:\Users\MY-CAM\Desktop\kalil"
    Obviously missing in your initial post ‼

    Where is saved MASTER workbook ?
    Why RTR workbook is not a .xlsx file like the two other source workbooks ?!
    Last edited by Marc L; 04-14-2023 at 12:58 AM. Reason: typo ...

  6. #6
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    Obviously missing in your initial post ‼
    I thought the Excel could deal with files in the same folder without indicate to the driver
    Where is saved MASTER workbook ?
    in the same directory with rest of others files .
    Why RTR workbook is not a .xlsx file like the two other source workbooks ?!
    this is the only file xlsm extension I received by email , if it's problem I will convert to xlsx .

  7. #7
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Question Re: copy & merge columns based on column across workbooks in master workbook


    Quote Originally Posted by KalilMe View Post
    I thought the Excel could deal with files in the same folder without indicate to the driver
    in the same directory with rest of others files
    Your bad as you forgot to clearly mention it ! As guessing can't be coding …


    Quote Originally Posted by KalilMe View Post
    should deal with blank cells if they are in columns (SALES & RET) across files .
    What could that mean ? As a blank cell is equal to zero, what could be the concern ?

  8. #8
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    What could that mean ? As a blank cell is equal to zero, what could be the concern ?
    I mean any item is existed in column RET is not necessary could be in column SALES . so when merge item for column RET will be empty cell in column SALES for the same item and the same thing when merge item for column SALES will be empty cell in column RET for the same item .

  9. #9
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Cool Try this ! Crash only with bad readers !


    Ok it was more confusing than necessary …

    Anyway according to your attachment a VBA demonstration (v2) to paste only to MASTER ThisWorkbook module :
    Please Login or Register  to view this content.
    ► Do you like it ? ► So thanks to click on bottom left star icon « Add Reputation » !
    Last edited by Marc L; 04-20-2023 at 03:19 PM. Reason: version 2 ...

  10. #10
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    Thanks Marc L !
    question : why doesn't sort as I put it COR-FF1,COR-FF2,COR-FF3....?

  11. #11
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    Thanks for the rep !
    No sort first 'cause you did not mention it in your initial post …
    And according of the bad design of this column my Excel versions can only apply a text sort
    so for example COR-FF2 should be the item #227 just after COR-FF199 and just before COR-FF20 :

    SortAlpha.jpg

    But maybe your recent Excel version can do what you expect so try manually to sort the result
    then if you succeed just activate the Macro Recorder and redo the same operations
    in order you get your own additional code …

    Another way : does COR-FF# is the real prefix, always the same or always same data structure like ??????# (6 characters before the number) ?
    In this case you can use a helper column - or the useless ITEM column ! - to extract the number then sort on this column.

  12. #12
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    Or just removing 'COR-FF' (if unique prefix) from column CO-IT in order to apply the sort on this column …

  13. #13
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    does it mean it's not possible sort directly for this prefix structure like this ?
    Please Login or Register  to view this content.

  14. #14
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    Yes as this codeline is exactly my post #11 screenshot but very not what you expect with your post #10.
    According to your data the obvious correct reference should be COR-FF0002 rather than COR-FF2 in order to be directly well sorted !
    For your post #10 result maybe the sort of your Excel version can, did you try at least ?
    For other ways as guessing can't be coding so I won't try anything without any accurate answer to my questions
    as no clue if COR-FF is fake or not, unique or not, what is the real CO-IT data structure and so on …
    Last edited by Marc L; 04-15-2023 at 07:30 PM.

  15. #15
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    I did with this COR-FF002 and your code sorted as I wanted .
    but why ?! what's relating zero to succeed sorting ?

  16. #16
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Question Re: copy & merge columns based on column across workbooks in master workbook


    Just 'cause this is text data so not numeric ! The text sort is based character by character from left to right (or better from first to last)
    like my post #11 screenshot shows it …
    Different sort VBA ways exist according to your bad designed column CO-IT but as it depends on what you did not explain !
    Or I may use the classic universal but slower sort algorithm for dumb situation (aka design by foot, inconsistant data or
    when someone is begging on forum for help without well understanding his need so can't well describe, elaborate it) …

    Another point : whatever the source workbook the data worksheet name is always STA and will never change ?
    Or if the name can change is there always a single worksheet within the source workbook ?
    Last edited by Marc L; 04-16-2023 at 11:58 PM. Reason: typo ...

  17. #17
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    to your bad designed column CO-IT but as it depends on what you did not explain !
    Why yo consider bad designed column ? !
    I gave you the final result in MASTER workbook , isn't enough ?!
    Or if the name can change is there always a single worksheet within the source workbook ?
    yes could be changed and a single worksheet within the source workbook ,but based on your code indicates first sheet , so I don't think need to know if the sheet name will change within source workbook(this point I forgot posted . in reality I wanted posting it , but I forgot mentioning).
    BTW: if you see the result in MASER file and details for OP your code ignores shows result in first sheet as I did it(when clear data for the first sheet in MASTER file it doesn't show result just add new sheet and show result ignoring first sheet when it's empty except headers.)

  18. #18
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    Not well designed according to your sort need, missing zeros !
    As my VBA demonstration follows the initial post, as I'm not a mind reader and as you have already a sort codeline in your post #13,
    according to its title this thread is already solved !

    To go further, as the final result does very not explain what this column may really contain
    so just well read at least my posts #11, 12, 14 & 16 and revert all the missing informations
    - which should have been in the initial post - in order I can give it a last try …

    I have some faster smarter way to read the source workbooks according to the worksheet name (or if only a worsheet by workbook)
    but as you are Ok with the slower actual version I won't waste more time.
    By the way if you have well read my post #9 « a starter demonstration » means
    without any additional information you have to fit it yourself for what you forgot / misexplained, as a starter is better than nothing …

    And I have no idea of what could mean your BTW last part : unclear, so confusing !
    If you are not able to well describe your need at the level of what any Excel forum expects for,
    rather than trying to decrypt, decypher, figure out, guess, imagine, suspect and so on …
    … I will wait until a crystal clear elaboration or at least an attachment of the workbook as it is before the VBA procedure is launched
    and obviously with the exact expected result in another workbook like once after the VBA procedure execution
    in order even if I still could not understand another one may see the light !
    Last edited by Marc L; 04-17-2023 at 02:22 PM. Reason: typo ...

  19. #19
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    see the file. it supposes importing data into first sheet "REP_1" from the first time run the macro and when run again after fill first sheet , then will add new sheet with increment number for next sheet , but the code will ignore first sheet and move to next sheet when run from first time .
    Attached Files Attached Files

  20. #20
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    Ok : your bad ! 'Cause you did not explain that in your initial post as you asked for « every time run macro should create new sheet »
    - so my VBA demonstration creates a new sheet each time launched ! -
    and according to your initial post attachment which was not empty like your last attachment
    so never hope on any Excel forum your real need will be guessed !
    The reason why the initial post must be crystal clear, technically complete with nothing to guess
    in order you have nothing to fit yourself for what you forgot / misexplained.
    If each time you create such bad thread now I better understand why you did not receive any answer …

    As this is at beginner level to not create a new sheet if the last worksheet has no header in A1:D1 …
    I could incorporate this new requirement if only my listed posts in my previous post are read
    and receive some answers if you still need some sort on column B according to its bad data design
    or maybe you want the Excel standard text sort like my post #11 screenshot shows ?

    If you are not able to understand & describe the real data structure and so on …
    … so I could choose the universal sort for dumb as explained in my post #16,
    replacing any pro stuff with only Excel basics like any user using the Macro Recorder
    far slower - not very a concern according to your small attachment - but easier to maintain on your side as more at beginner level.

    I sent your attachment to a kid VBA beginner as a training, he was a bit upset to not go with a faster efficient way
    'cause of the obvious missing informations « can't be pro ! » he wrote
    so I explained it is for some student, a homework the student can not well understand,
    the reason why to choose the very beginner way 'cause of the missing informations …
    He is closed to achieved his code, I just will have to clean it a little but I will keep his logic as it is.
    Last edited by Marc L; 04-17-2023 at 09:54 PM. Reason: typo ...

  21. #21
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    Ok : your bad ! 'Cause you did not explain that in your initial post as you asked for « every time run macro should create new sheet
    which bad ?!!!!!
    how could increment sheets every time when run the macro without start from the first sheet ?
    I don't make first sheet empty . I put the result in first sheet , then automatically increment based on first sheet .
    and according to your initial post attachment which was not empty like your last attachment
    that's clarifying what your code does it. I gave you result directly in initial post .

    According to your data the obvious correct reference should be COR-FF0002 rather than COR-FF2 in order to be directly well sorted !
    I will follow this way .
    I don't have any idea about this sorting way . so this is not my bad because I don't know it .

  22. #22
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    COR-FF0002 was the explanation of the seven years old kid level text sort but
    no need to change the column design if you just well answer to my questions / hints since post #11 !
    If you do not understand anything, quote it and ask …

  23. #23
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    COR-FF0002 was the explanation of the seven years old kid level text sort
    I don't know that .
    but
    no need to change the column design if you just well answer to my questions
    Another way : does COR-FF# is the real prefix, always the same or always same data structure like ??????# (6 characters before the number) ?
    absolutely not

  24. #24
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    So in your future threads with a better explanation do not forget to attach at least a well representative workbook !
    That will help to get a quicker more targeted expected solution …

    According to your last answer post #9 is now updated under these rules :

    • Under Windows only.

    • Source workbooks must be closed and located in same folder than MASTER workbook.

    • Only MASTER workbook opened under Excel.

    • You may get wrong results if a source workbook is opened in another Excel instance.

    • Inconsistant data prefix before the number in column B.

    • With an inconsistant source workbook worksheet name as the new way can not know what is the first worksheet
      so it scans all the already sorted workbook Names collection for its relative worksheets
      then consolidate data for any worksheet with matching headers …

    • If MASTER workbook last worksheet A2:D2 is empty so this worksheet is reused to load the results rather than creating a new one.

  25. #25
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    thank for a new version , but unfortunately shows error invalid procedure call or argument in this line
    Please Login or Register  to view this content.

  26. #26
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    As it well works on my side - Dir is a VBA basics - with an instant result with your attachment …
    Erase all ThisWorkbook module content then Copy from post #9 then Paste to ThisWorkbook module.
    Maybe you need to close all applications, restart Excel alone, maybe need to reboot the computer …

    Or I have to clean the kid way - same Dir logic, same sort workaround logic - well working as well but slower.
    Last edited by Marc L; 04-20-2023 at 08:23 PM.

  27. #27
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    my bad , sorry !
    I put in standard module not in workbook module .
    ok it works perfectly .
    just question about for NumberFormat in this line
    Please Login or Register  to view this content.
    after run the macro some numbers don't show number format but when I change to this
    Please Login or Register  to view this content.
    will fix this problem. so why doesn't show for all numbers?

  28. #28
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    As it well works again on my side with your attachment …
    As I mix a positive number format and a text format so obviously when a number is not shown
    so the obvious reason is it's not a positive number but negative and as there is no negative in your attachment !
    Again it is what happens when the attachment does not well reflect the real context, to remind for your future threads …

    Number format for positive, negative and text with the wOw effect : _w#,##0_w;[Red]_w- #,##0_w;;_w@_w
    Last edited by Marc L; 04-20-2023 at 10:28 PM.

  29. #29
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    As I mix a positive number format and a text format so obviously when a number is not shown
    so the obvious reason is it's not a positive number but negative and as there is no negative in your attachment !
    I don't understand !
    do you mean what shows in cells are not real numbers ?

  30. #30
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    As the cell display depends on to the cell formatting …
    But you did not again confirm : the number is negative ?

  31. #31
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    There is no negative number.

  32. #32
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Question Re: copy & merge columns based on column across workbooks in master workbook


    As no issue on my side so did you try at least with exactly the same initial post attachment ?

  33. #33
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    as far as I know implementing in the same initial post attachment , but I will try again .

  34. #34
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    As it well works again on my side with your attachment …
    this is really strange !!
    what I see the problem just for CVF file , otherwise the others file are ok !

  35. #35
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Question Re: copy & merge columns based on column across workbooks in master workbook


    In the result worksheet, in which cells addresses the number is not displayed but can be seen via the formula bar ?

  36. #36
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    I highlighted cells don't show number format.
    but can be seen via the formula bar ?
    it doesn't also show the formula bar.
    Attached Files Attached Files

  37. #37
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Re: copy & merge columns based on column across workbooks in master workbook


    So with an empty cell your post #27 has no sense ‼ As the number format just displays the cell content …

  38. #38
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    if you suspect what I said in post#27 you can test it .
    Attached Files Attached Files

  39. #39
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    According to your last attachment except you have modified the number format the result is exactly the same than my post #9 demonstration …
    So I have no clue since your post #27 of what you are talking about …
    If my result is wrong then you should better elaborate technically why with details.

  40. #40
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    According to your last attachment except you have modified the number format the result is exactly the same than my post #9 demonstration …
    yes
    So I have no clue since your post #27 of what you are talking about …
    what I'm talking about when modify the number format the result is exactly the same than my post #9 demonstration then will work why?!
    I thought the problem could be from the cells don't contain numeric values , but seem the cells contain numeric values

    If my result is wrong then you should better elaborate technically why with details.
    your result is correct . the question is just number format.
    I'm surprised to work for you with the the same initial post attachment based on post#9 !

  41. #41
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: copy & merge columns based on column across workbooks in master workbook


    Quote Originally Posted by KalilMe View Post
    the result is exactly the same than my post #9 demonstration then will work why?!
    I thought the problem
    Your post #9 demonstration ?‼‼
    So as yours you should know how to fix it !

    As I can't find / see any problem …

  42. #42
    Forum Contributor
    Join Date
    04-11-2021
    Location
    Tripoli
    MS-Off Ver
    Excel 2016 ,windows 10 64bit
    Posts
    345

    Re: copy & merge columns based on column across workbooks in master workbook

    Your post #9 demonstration ?‼‼
    my apologies about this mistake !
    So as yours you should know how to fix it !
    I did it based on post#27
    As I can't find / see any problem …
    that's on your side , but for me makes me so confused . same files works for you but not work for me about number format .
    for me I see this is mystery.

+ 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] Copy specific columns from 2 different excel workbooks to Master workbook
    By E5254730 in forum Excel Programming / VBA / Macros
    Replies: 22
    Last Post: 04-10-2023, 09:58 AM
  2. Merge Data from Multiple Workbooks into a Master Workbook
    By Zatin in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-07-2018, 05:11 AM
  3. [SOLVED] How to merge more than 2 workbooks in one master workbook
    By hkbhansali in forum Excel General
    Replies: 1
    Last Post: 04-20-2014, 11:58 AM
  4. merge multiple Workbooks to master workbook performance optimization
    By blackplatypus in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-31-2012, 08:49 AM
  5. Replies: 2
    Last Post: 03-16-2009, 12:26 PM
  6. Macro to merge cells from multiple workbooks into one Master workbook
    By psmcltraining in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-18-2009, 03: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