+ Reply to Thread
Results 1 to 11 of 11

How to do a top 10 that updates automatically when the data is updated?

  1. #1
    Forum Contributor
    Join Date
    12-16-2015
    Location
    Southern Cali
    MS-Off Ver
    2013
    Posts
    104

    How to do a top 10 that updates automatically when the data is updated?

    Hello,

    I am trying to do the following.

    On one sheet, I have A to AA columns that are capturing the data that I need.

    I would like to do the following on separate sheet if possible.

    On the sheet Project-Portfolio:

    Capture:

    Column D7-D312 Project Type (Funded Project, Un-Funded Project, Pilot Program, Production Program (Four categories))
    Column E7-E312 Project Name (various)
    Column AA7-AA312 Project Score

    Project Type - Project Name - Project Score (Highest to lowest top 10)
    Funded Project David 400
    Funded Project David 2 355
    Funded Project David 3 354
    Etc

    Second set same headers:
    Un-Funded Project John 1 322
    Un-Funded Project Jonh 2 320
    Etc


    Is this possible to do within Excel? I am assuming it is, but if you have looked at some of my older posts, I am still pretty new at this.

    Thanks
    Last edited by rhett7660; 08-26-2016 at 12:30 PM. Reason: Solved

  2. #2
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: How to do a top 10 that updates automatically when the data is updated?

    You get better result on your question if you add a small excel file, without confidential information.

    Please also add the expected results manualy in your file.
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  3. #3
    Forum Contributor
    Join Date
    12-16-2015
    Location
    Southern Cali
    MS-Off Ver
    2013
    Posts
    104

    Re: How to do a top 10 that updates automatically when the data is updated?

    Added a sample with the various tabs.
    Attached Files Attached Files

  4. #4
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: How to do a top 10 that updates automatically when the data is updated?

    1) Where do I find the data in the file?

    2) Where do I find the expected result in the file?

  5. #5
    Forum Contributor
    Join Date
    12-16-2015
    Location
    Southern Cali
    MS-Off Ver
    2013
    Posts
    104

    Re: How to do a top 10 that updates automatically when the data is updated?

    There is only two entries in the file.... The data is on the tab Project Portfolio A through AA

    Columns D, E, and AA are the three columns I am looking to capture on the tab "Top Ten"

    Data is in Row 7 and 8

    Expected results are on the tab "Top Ten"

  6. #6
    Forum Contributor
    Join Date
    12-16-2015
    Location
    Southern Cali
    MS-Off Ver
    2013
    Posts
    104

    Re: How to do a top 10 that updates automatically when the data is updated?

    If you would like, I can put some more dummy data in and re-upload!

  7. #7
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: How to do a top 10 that updates automatically when the data is updated?

    Although you tried to inform us, please also add the expected result in your file.

    Mark the related cells with the same backgroundcolor.

  8. #8
    Forum Contributor
    Join Date
    12-16-2015
    Location
    Southern Cali
    MS-Off Ver
    2013
    Posts
    104

    Re: How to do a top 10 that updates automatically when the data is updated?

    Ok, in the attached spreadsheet. You will find four tabs across the bottom. Project-Portfolio, Top Ten, Totals, Dropdown

    On the first tab, Project-Portfolio, the only columns I want to zero in on are: D, E, and AA so those three columns will have data in them. Only three pieces of data, but they have data in those columns.

    On the Top Ten tab, you will see the following:

    Project Type (which correlates to column "D" from the Project-Portfolio Tab)
    Project Name (which correlates to column "E" from the Project-Portfolio Tab)
    Score (which correlates to column "AA" from the Project-Portfolio Tab)

    I want to see the top 10 or in this case the top three based on score, and separated by Project Type. So if the project is labeled as "Funded Project" I want to see the top 10 for Funded Projects based on the score from column "AA".

    If the project is labeled "Un-Funded" I want to see the top 10 Un-Funded Projects based on the score from column "AA". Of course this will be on the top 10 tab, but in a different section. Once I get the first section figured out, I can do hopefully apply that to the additional reporting section I need, so I am not to worried about the second part.
    Attached Files Attached Files
    Last edited by rhett7660; 08-25-2016 at 04:44 PM.

  9. #9
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: How to do a top 10 that updates automatically when the data is updated?

    with a pivot table.

    I first made sure there is text in the headers, so I added a - in the cell P4.

    After that I made a pivot table.

    After that I sorted them from high to low.

    You can also use a top 10 (or top 7), but this is to get you started.

    See the attached file.

  10. #10
    Forum Expert Crooza's Avatar
    Join Date
    10-19-2013
    Location
    Hunter Valley, Australia
    MS-Off Ver
    Excel 2003 /7/10
    Posts
    2,082

    Re: How to do a top 10 that updates automatically when the data is updated?

    If its unlikely you'll have two projects scored the same then you could do this without a pivot this way

    In B6 of top ten tab put this formula

    =IF(D6="","",INDEX('Project-Portfolio'!$D$7:$D$311,MATCH(D6,'Project-Portfolio'!$AA$7:$AA311,0)))

    In C6

    =IF(D6="","",INDEX('Project-Portfolio'!$E$7:$E$311,MATCH(D6,'Project-Portfolio'!$AA$7:$AA311,0)))

    and in E6

    =IFERROR(LARGE('Project-Portfolio'!$AA$7:$AA$311,ROWS('Top Ten'!$D$6:D6)),"")

    Now you've only put 'funded projects' in your list. I notice you want to separate two lists into funded and non funded. That will mean more formula work too so Pivot table might be your easiest option
    Happy with my advice? Click on the * reputation button below

  11. #11
    Forum Contributor
    Join Date
    12-16-2015
    Location
    Southern Cali
    MS-Off Ver
    2013
    Posts
    104

    Re: How to do a top 10 that updates automatically when the data is updated?

    Thank you both very much! Both worked! Now I just have to decide the path I want to go down.

    Thank you both again!

+ 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] Macro that automatically updates pivot table when data in separate worksheet is updated
    By Femi in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-09-2013, 08:48 AM
  2. Chart that automatically updates with new data and new date range
    By needhelp13 in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 08-07-2013, 06:24 PM
  3. Replies: 1
    Last Post: 07-19-2013, 04:34 PM
  4. Graph or chart to be updated automatically with new data
    By sumonrezadu in forum Excel General
    Replies: 0
    Last Post: 11-06-2012, 08:32 PM
  5. Chart automatically updates with current weeks data only
    By toadmussen in forum Excel Charting & Pivots
    Replies: 0
    Last Post: 09-17-2012, 07:42 AM
  6. VBA: Creating a UDF that automatically updates as the data changes.
    By BigBas in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-30-2008, 02:21 PM
  7. A Chart that Updates Automatically as Data Size Changes?
    By Notclevr in forum Excel Charting & Pivots
    Replies: 3
    Last Post: 01-18-2006, 12:18 PM
  8. Is there a way to automatically add columns as the data updates?
    By Eric D. in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-24-2005, 02:06 AM

Tags for this Thread

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