+ Reply to Thread
Results 1 to 13 of 13

Extract info from a large dynamic excel sheet.

  1. #1
    Registered User
    Join Date
    01-31-2012
    Location
    mauritius
    MS-Off Ver
    Excel 2007
    Posts
    12

    Extract info from a large dynamic excel sheet.

    I have an issue, i usually work with 3d and i export all my working in excel to summarise in a table.Now i came across an issue whereby i have a whole exported list for the whole project and i want to extract some of the info to make a new table.My master list is a dynamic one it keeps on updating from the project.

    I have attached the sheet, there is one master sheet and 2 other sheets, PID10 & PID2...those sheets are break down table form the master sheet.

    Can anyone help me please....its been 3 days am stuck on this...

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Extract info from a large dynamic excel sheet.

    It seems your file may be corrupt, I am unable to open it
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Registered User
    Join Date
    01-31-2012
    Location
    mauritius
    MS-Off Ver
    Excel 2007
    Posts
    12

    Re: Extract info from a large dynamic excel sheet.

    Quote Originally Posted by FDibbins View Post
    It seems your file may be corrupt, I am unable to open it
    i have saved the file to 2003/2007 format
    Attached Files Attached Files
    Last edited by indesh; 07-29-2013 at 12:56 AM. Reason: files cannot be opened

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Extract info from a large dynamic excel sheet.

    Nope sorry, same problem. I get an error message saying...

    The file you are trying to open is in a different format than specified by the extension. Verify that the file is not corrupt and is from a trusted source before opening the file

  5. #5
    Registered User
    Join Date
    01-31-2012
    Location
    mauritius
    MS-Off Ver
    Excel 2007
    Posts
    12

    Re: Extract info from a large dynamic excel sheet.

    i resaved the file to 2003/7 format

  6. #6
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Extract info from a large dynamic excel sheet.

    It already was in 2003 format... .xls 2007 onwards uses .xlsx extension. I am on 2007, it can open both .xls and .xlsx files

  7. #7
    Registered User
    Join Date
    01-31-2012
    Location
    mauritius
    MS-Off Ver
    Excel 2007
    Posts
    12

    Re: Extract info from a large dynamic excel sheet.

    i have created a pdf of it hope it works

  8. #8
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,610

    Re: Extract info from a large dynamic excel sheet.

    @FDibbins

    I first saved the file it then opened flawlessly

    @indesh

    what is the relationship between your master sheet and the detail sheets?

  9. #9
    Registered User
    Join Date
    01-31-2012
    Location
    mauritius
    MS-Off Ver
    Excel 2007
    Posts
    12

    Re: Extract info from a large dynamic excel sheet.

    My mastersheet has all datas exported, when u see the last column PIDNO now you have only 2 pids but you may have till 30 PIDS...
    i need to break the mastersheet in different table based from the PIDNO...i.e EACH PIDNO will be on one sheet....the detail sheets will be extracted data from the pids...
    the data required will be TagNo.-product-mass-volume-density-vicsosity-presure-temperature-brix for each pid...

    the detail sheets represents how the table should look like...

    i have been stuck since last friday and i can't move on ....

    your help shall be most welcomed

  10. #10
    Registered User
    Join Date
    06-22-2013
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    65

    Re: Extract info from a large dynamic excel sheet.

    Indesh,

    See attached.

    I have created a new worksheet called PIDxx. There is a drop down that shows the unique PIDs and when you select the table update with correct data. I did the following steps.

    1 Create a table from your original data (StreamingTable) so it is easy to reference the various columns in all the formula

    2 The column titles in the output table (STREAMLINE NO. - which I have assumed is the Tag No. column) are automatically generated by extracting the unique ids. You need to copy this across until a blank appears, I always use conditional formatting with a gray cell so I know I have reached the end of the unique values

    3 The data in the table is extracted by using index and match. The row match is done on the join of the PID & Tag no. The column match is done by the reference you have in column A against the table headers. This is the important formula to master.

    =IFERROR(INDEX(StreamingTable,MATCH($B$3&E$4,StreamingTable[PIDNO]&StreamingTable[Tag No.],0),MATCH($A5,StreamingTable[#Headers],0)),"")

    4 I could not find an easy way to get the unique PIDs in the data validation drop down so I had to extract the unique PID ids in column P of the Streaming Table and then used a dynamic name range to always select the correct values. A bit complicated but it works well.

    I hope that helps

    Regards

    David
    Attached Files Attached Files
    Last edited by JBeaucaire; 08-14-2013 at 10:28 AM.

  11. #11
    Registered User
    Join Date
    01-31-2012
    Location
    mauritius
    MS-Off Ver
    Excel 2007
    Posts
    12

    Re: Extract info from a large dynamic excel sheet.

    Dear David,

    it works very well!!!!
    i bow to your skills...am really impressed...

    thanks a lot

  12. #12
    Registered User
    Join Date
    06-22-2013
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    65

    Re: Extract info from a large dynamic excel sheet.

    Indesh,

    Glad you liked it. Please click the button to add to my reputation. Also, why don't you join my youtube channel. I will be posting some more excel videos in the near future to cover looking up data in tables and extracting unique values using array formulas.

    Thank

    David
    Last edited by JBeaucaire; 08-14-2013 at 10:28 AM.

  13. #13
    Registered User
    Join Date
    01-31-2012
    Location
    mauritius
    MS-Off Ver
    Excel 2007
    Posts
    12

    Re: Extract info from a large dynamic excel sheet.

    David,

    I 'll surely join.

    thnks

+ 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. Extract Info from 1 sheet to the next
    By Oly Steel Man in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 10-20-2011, 11:21 AM
  2. Extract info from tab sheets to master sheet
    By sonyamartinez1 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-18-2011, 04:22 PM
  3. Replies: 0
    Last Post: 07-21-2011, 05:13 PM
  4. [SOLVED] Compare 2 Sheets and Extract Unique Info to a 3rd Sheet
    By kilo1990 in forum Excel General
    Replies: 7
    Last Post: 12-19-2005, 06:40 PM
  5. macro to extract info and paste to a new sheet
    By Brad K. in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-11-2005, 07:06 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