+ Reply to Thread
Results 1 to 12 of 12

INDIRECT.EXT question

  1. #1
    Registered User
    Join Date
    07-10-2012
    Location
    metro manila, philippines
    MS-Off Ver
    Excel 2007
    Posts
    18

    INDIRECT.EXT question

    Hi Everyone,

    I have a problem when trying to use INDIRECT.EXT

    =INDIRECT.EXT("'C:\Users\WIN7\Desktop\auto inven\[Book2.xlsx]July 4, 2012'!$C$11")

    only lets me copy 1 specific cell.

    What i want is for it to copy continuously if I drag it across.

    Attach is the sample file.

    I'll be getting the information inside Book2.xlsx then July 4, 2012 then the info from "DAILY PRODUCTION" and there respective sizes.

    Will be transferred to report.xls into there respective sizes also.

    Any help will be highly appreciated.


    Thanks,
    Howard
    Attached Files Attached Files

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,617

    Re: INDIRECT.EXT question

    Never used it but try:

    =INDIRECT.EXT("'C:\Users\WIN7\Desktop\auto inven\[Book2.xlsx]July 4, 2012'!" & C11)


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Registered User
    Join Date
    07-10-2012
    Location
    metro manila, philippines
    MS-Off Ver
    Excel 2007
    Posts
    18

    Re: INDIRECT.EXT question

    Hi,

    Thank you for your reply

    after using

    =INDIRECT.EXT("'C:\Users\WIN7\Desktop\auto inven\[Book2.xlsx]July 4, 2012'!" & C11)

    I get #REF! when i drag it across alot of #REF! appears

    on book2.xlsx it should get the daily production downwards (c6-c17)

    on report.xls while its being dragged across (fill in b6-m6)

    Best Regards,
    Howard

  4. #4
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,617

    Re: INDIRECT.EXT question

    I'm sorry; I don't have that tool and your example workbooks don't seem to use it either ... at least, not as far as I can see.

    I've asked for others to have a look at the question.

    Regards, TMS

  5. #5
    Registered User
    Join Date
    07-10-2012
    Location
    metro manila, philippines
    MS-Off Ver
    Excel 2007
    Posts
    18

    Re: INDIRECT.EXT question

    I am using morefunc to use indirect.ext

  6. #6
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: INDIRECT.EXT question

    You are dragging to the right? What should the next cell result be? D11?

    If so, then maybe this:

    =INDIRECT.EXT("'C:\Users\WIN7\Desktop\auto inven\[Book2.xlsx]July 4, 2012'!" & ADDRESS(11,COLUMN(C1)))
    Last edited by JBeaucaire; 07-11-2012 at 03:08 AM.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  7. #7
    Registered User
    Join Date
    07-10-2012
    Location
    metro manila, philippines
    MS-Off Ver
    Excel 2007
    Posts
    18

    Re: INDIRECT.EXT question

    No Sir.

    It will take the information from Book2.xlsx from c6, c7, c8, c10, c11, c12 and so on.

    and place those information to report.xls and put them to b6, c6, d6, e6, f6 and so on.

    Thank you for your responses.

  8. #8
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,441

    Re: INDIRECT.EXT question

    First issue of many is incrementing the row reference whilst dragging across columns. The automatic increment would be to increase the column reference, So D11 then E11, F11 etc.

    Next problem is the columns are in the reverse order to your rows.
    So Column B in Report.xls contains information for '5/8 But the row in Book2.xls is row 17 and not row 6. This means you actual want the row reference to start at 17 and decrease as you drag across.

    Finally you have the issue of INDIRECT not working when the referred to work book is closed.
    Edit: I assume INDIRECT.EXT get around this limitation?

    You may have to use VLOOKUP or a combination of INDEX and MATCH to locate and reference the data. Either way you will need to standardised the descriptive text to get a match.
    The you can use a named range to reference the workbook and data range. This would need to be changed when the file name changes but at least the modification will only be needed in 1 place.
    Cheers
    Andy
    www.andypope.info

  9. #9
    Registered User
    Join Date
    07-10-2012
    Location
    metro manila, philippines
    MS-Off Ver
    Excel 2007
    Posts
    18

    Re: INDIRECT.EXT question

    Hi Andy,

    I can manually change the order so that it will match.

    I am using INDIRECT.EXT from morefunc which can access closed files.

    Thanks,
    Howard

  10. #10
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,441

    Re: INDIRECT.EXT question

    Expand on Jerry's suggestion,

    =ADDRESS(19-COLUMN(),2)

  11. #11
    Registered User
    Join Date
    07-10-2012
    Location
    metro manila, philippines
    MS-Off Ver
    Excel 2007
    Posts
    18

    Re: INDIRECT.EXT question

    Hi Andy and Jerry,

    Both of you helped me. Its working great now. UP for the both of you! :D

    CASE SOLVED!

    Thanks,
    Howard

  12. #12
    Registered User
    Join Date
    11-04-2012
    Location
    indonesia
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: INDIRECT.EXT question

    why sort from z-a not a-z??

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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