+ Reply to Thread
Results 1 to 24 of 24

Summarized View of a Large Data - HELP (Row by Row)

  1. #1
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Summarized View of a Large Data - HELP (Row by Row)

    Hi,

    I have a large set of data in a sheet. Now, I wanted to view all the data in a particular row in a summarized manner in another sheet.

    For example:
    Let's say this is the data (I have data till column 'BF' in real)
    1.JPG

    In another sheet, I want the data to be summarized as:
    2.JPG

    And upon clicking the arrow, it should display the data in the next row and subsequently:
    3.JPG

    Seeking help on this
    Thanks!

  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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    If the data is unique, try using vlookup() or Index/Match. If that doesnt work for you, upload a small sample wb, showing what you have and what you want.
    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-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Hi, thanks for the reply.
    I have attached a WB FYR. have a loot at it.

    Ideally, I want a "Next Button" sort of thing in the summary sheet, which at each click will give me details of each row (from the data sheet) in a summarized view as shown in the WB.
    Attached Files Attached Files
    Last edited by AliGW; 07-15-2021 at 01:12 AM. Reason: Unnecessary quotation removed.

  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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    So what will your summary/extract be based on? what will be the key criteria for the search?

  5. #5
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    It's basically to have an overview of customer details before making a call to them.
    Last edited by AliGW; 07-15-2021 at 01:11 AM. Reason: Unnecessary quotation removed.

  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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    OK but what will you enter to decide which data to pull?

  7. #7
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    That's why I need a button or something in the summary sheet which will go/give details of next row when clicked.
    OR
    We can use the serial number (1,2,3) as reference to pull details of that particular row.
    Last edited by AliGW; 07-15-2021 at 01:11 AM. Reason: Unnecessary quotation removed.

  8. #8
    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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    OK thats what I needed - the serial number. Give me a few minutes

  9. #9
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Sure Glad to wait!
    Last edited by AliGW; 07-15-2021 at 01:10 AM. Reason: Unnecessary quotation removed.

  10. #10
    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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Put this in C4...
    =INDEX(Data!$A$2:$X$3,MATCH(Summary!$B$4,Data!$A$2:$A$3,0),MATCH(Summary!C3,Data!$A$1:$X$1,0))

    Then copy across and down as needed.
    (It may mess up your formatting)

  11. #11
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    You mean B4? or C4?
    In summary sheet?
    Last edited by AliGW; 07-15-2021 at 01:09 AM. Reason: Unnecessary quotation removed.

  12. #12
    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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    C4. The extract is based off whatever you enter in B4

  13. #13
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Ok it changes only the "old partner no"
    So I should work on and formulate all required cells..

  14. #14
    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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    If you copy that formula to all the cells you need to extract data for, it will pull in the required info

  15. #15
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Yeah thanks a lot!
    Now, I will have to refine it to my requirement.

  16. #16
    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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    To adjust for your range, change the BOLDED parts...
    =INDEX(Data!$A$2:$X$3,MATCH(Summary!$B$4,Data!$A$2:$A$3,0),MATCH(Summary!C3,Data!$A$1:$X$1,0))
    =INDEX(range-with-ALL-your-data-excluding-headings,MATCH(Summary!$B$4,range-with-S.No-in,0),MATCH(Summary!C3,Range-with-headings,0))

  17. #17
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Okay got it, much helpful!
    Last edited by AliGW; 07-15-2021 at 01:09 AM. Reason: Unnecessary quotation removed.

  18. #18
    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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Happy to help and thanks for the feedback

  19. #19
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Need further help on this..

    I have added Remarks field in "Summary" sheet and have added data validation to it.
    Now, the entered remarks should be reflected to that corresponding row in column Y of the data sheet. This should happen for all the data.

    Is that possible?
    Attached Files Attached Files

  20. #20
    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
    52,946

    Re: Summarized View of a Large Data - HELP (Row by Row)

    seeing as the Remarks in Summary only pertain to that specific S.No that was selected in B4...and that will (probably?) change for the next S.No, there is no formula way pull the values into Data and have it stay there after the next number is selected.

    In other words...
    you select 1 in Summary
    Summary table populates
    you add a Remark to Summary (for 1)
    that remark will be pulled to Data for SN 1, referencing what you selected in Summary D14

    you then select 2 in Summary
    Summary table populates
    you add a Remark to Summary (for 2...remarks for 1 are replaced by remarks for 2)
    that remark will be pulled to Data for SN 2, referencing what you selected in Summary D14...
    BUT because there is now no longer a remarks for 1, SN 1 in Data will lose it's Remarks.

  21. #21
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Okay so that is not possible I understand. Thanks again!
    Last edited by AliGW; 07-15-2021 at 01:08 AM. Reason: Unnecessary quotation removed.

  22. #22
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,418

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Administrative Note:

    Please don't quote whole posts, especially when you are responding to the one immediately preceding your own - it's just clutter. It's OK to quote if you are responding to a post out of sequence, but limit quoted content to a few relevant lines that makes clear to whom and what you are responding. Thanks!

    For normal conversational replies, try using the QUICK REPLY box below or the REPLY button instead of REPLY WITH QUOTE.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  23. #23
    Registered User
    Join Date
    01-04-2016
    Location
    Chennai
    MS-Off Ver
    2016
    Posts
    43

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Ok now I have a new query in this..

    We take serial number as reference in summary sheet. Now, is there any possibility that the entire row gets highlighted?

    Meaning... If I input 1 in 'serial no' cell of 'summary' sheet, that corresponding row in 'data' sheet has to be highlighted in some sorts.
    Any hope on that?

  24. #24
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,418

    Re: Summarized View of a Large Data - HELP (Row by Row)

    Please start a new thread with a suitable title and sample workbook attached for this new query. Thanks.

+ 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. Data from two sheets summarized in a third sheet
    By excelninho in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 07-10-2014, 01:50 AM
  2. Replies: 34
    Last Post: 01-21-2014, 03:07 PM
  3. Summarized Data in one Sheet
    By khurramfarooqpk in forum Excel General
    Replies: 11
    Last Post: 07-02-2013, 03:34 AM
  4. User friendly view of large data set
    By salk31 in forum Excel General
    Replies: 0
    Last Post: 07-02-2010, 07:19 AM
  5. summarized data as cut & paste
    By Lisa2 in forum Excel General
    Replies: 2
    Last Post: 08-08-2007, 12:25 PM
  6. [SOLVED] How to view summarized items in a pivot table
    By exceluser in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 06-13-2005, 11:05 PM
  7. How do I change how PivotChart data is summarized, from sum to av.
    By csavage in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 01-27-2005, 01:06 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