+ Reply to Thread
Results 1 to 14 of 14

Formula for populating data summary tab (Dasboard)

  1. #1
    Registered User
    Join Date
    08-16-2021
    Location
    Bristol
    MS-Off Ver
    Office365
    Posts
    26

    Formula for populating data summary tab (Dasboard)

    Good morning,

    I am stuck with a formula that I am trying to use to complete a dashboard showing which projects our partnership organisations work on with us. I have attached a spreadsheet with two example tabs:

    1. Master List

    This is the worksheet our team uses to add partnership details. The last 5 columns are used to indicate (with a 'Y') which of our key projects each partner is involved with.

    2. Dashboard

    The table I have added here shows the names of the partners, pulled through from the Master List, but what I really need is a formula that will also bring over the projects that they are involved with from the Master List (Columns O to T). This will populate my Partners by Project table in the Dashboard. Is it worth using a formula, or would a Pasted Link be able to do this adequately?
    Attached Files Attached Files

  2. #2
    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. 2406 (Windows 11 23H2 64-bit)
    Posts
    81,836

    Re: Formula for populating data summary tab (Dasboard)

    Is it worth using a formula, or would a Pasted Link be able to do this adequately?
    No. As soon as you resort anything, your links will get out of synch.

    As you have Office 365, you can update all of your formulae.

    In G14 (but you MUST remove all data in those table columns first):

    =FILTER(SORTBY(MasterList!$A$4:$A$325,MasterList!$A$4:$A$325,1),MasterList!$A$4:$A$325<>"")

    In H1 (etc.):

    =SUBSTITUTE(FILTER(SORTBY(MasterList!$O$4:$O$325,MasterList!$A$4:$A$325,1),MasterList!$A$4:$A$325<>""),"0","")

    In A14:

    =FILTER(SORTBY(MasterList!$A$4:$A$325,MasterList!$A$4:$A$325,1),MasterList!$C$4:$C$325=A$13)

    In B14 (etc.):

    =FILTER(SORTBY(MasterList!$A$4:$A$325,MasterList!$A$4:$A$325,1),MasterList!$C$4:$C$325=B$13)
    Last edited by AliGW; 09-14-2021 at 08:01 AM.
    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.

  3. #3
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,428

    Re: Formula for populating data summary tab (Dasboard)

    This ??

    in H4

    =VLOOKUP($G14,MasterList!$A$4:$T$500,COLUMNS($A:O),FALSE)

    copy across and down

  4. #4
    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. 2406 (Windows 11 23H2 64-bit)
    Posts
    81,836

    Re: Formula for populating data summary tab (Dasboard)

    @John

    Not sure about that - some of the companies are on the list more than once. VLOOKUP will return only the first instance.

  5. #5
    Valued Forum Contributor
    Join Date
    04-27-2015
    Location
    Abu Dhabi, U.A.E
    MS-Off Ver
    Office 365 | 2016
    Posts
    697

    Re: Formula for populating data summary tab (Dasboard)

    Partners by Category
    Copy & paste the across:

    =IFERROR(SORT(UNIQUE(FILTER(MasterList!$A$4:$A$800,MasterList!$C$4:$C$800=Dashboard!B$12))),"")

    Partnership links by project
    =FILTER(MasterList!$A$4:$A$800,FILTER(MasterList!$A$4:$T$800,MasterList!$A$3:$T$3=Dashboard!H$12)="Y")
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    08-16-2021
    Location
    Bristol
    MS-Off Ver
    Office365
    Posts
    26

    Re: Formula for populating data summary tab (Dasboard)

    Thanks to everyone for coming back so quickly!

    AliGW - I have used the formula in G14 to list them and have had a thought that for the Dashboard, I don't need to have the multiple instances of names, whereas I do on the Master List.
    Can the formula be adapted to handle just having one instance of each name in the list running from G14?


    ---ADDED POST SUBMISSION----

    Actually - I have just realised that I would then need to look at the project columns for all in the Master List and have it translate into one row in the Dashboard - very complex!
    Last edited by BenHornsby2021; 09-14-2021 at 08:58 AM. Reason: Mistake

  7. #7
    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. 2406 (Windows 11 23H2 64-bit)
    Posts
    81,836

    Re: Formula for populating data summary tab (Dasboard)

    Try this:

    =UNIQUE(FILTER(SORTBY(MasterList!$A$4:$A$325,MasterList!$A$4:$A$325,1),MasterList!$A$4:$A$325<>""))

  8. #8
    Registered User
    Join Date
    08-16-2021
    Location
    Bristol
    MS-Off Ver
    Office365
    Posts
    26

    Re: Formula for populating data summary tab (Dasboard)

    Hi Ali!
    I have just amended by previous post as it raises complexities. Let's say 3 different entries on the Master List cover 2 or 3 projects, that needs to be read and then added to the newly truncated single row on the dashboard and still show each project correctly. I think that would be very complicated......but I don't really know!

  9. #9
    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. 2406 (Windows 11 23H2 64-bit)
    Posts
    81,836

    Re: Formula for populating data summary tab (Dasboard)

    OK - let's start again.

    Instead of shifting goalposts, please produce a FRESH sample workbook showing 10-15 rows of data (manually mocked up) of what you want to see.

    This will save a lot of potential trial and error. SHOW us what you want.

  10. #10
    Registered User
    Join Date
    08-16-2021
    Location
    Bristol
    MS-Off Ver
    Office365
    Posts
    26

    Re: Formula for populating data summary tab (Dasboard)

    Hi Ali,
    Thanks - and that's a really good idea! So, attached is a mock-up. You will see from the Master List, going as far down as 'Creative Youth Network' that where there are multiple entries for the name, it corresponds to different projects in Columns O to T. In the example of Creative Youth Network, there are 4 possible projects across the 3 entries (corresponds to 3 different contacts at their end).

    On the Dashboard I have applied your UNIQUE(FILTER(SORTBY........... formula to show how I would like this to translate to single instances of the name, but in the case of an example like the Creative Youth Network, I would like all the project instances aggregated into one row for the one instance of the name. There is an example of this for Avon & Somerset Constabulary (first entry) as well. Does that make sense?

    I am learning so much already by using the forum, so thank you. I do go away and practice with the formulae that I discover and although it is like reading the Matrix sometimes, I can see the world emerging. If I am to be The One, then you are surely the Oracle! Thanks for your help so far, it is much appreciated.
    Attached Files Attached Files

  11. #11
    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. 2406 (Windows 11 23H2 64-bit)
    Posts
    81,836

    Re: Formula for populating data summary tab (Dasboard)

    In H14 copied down:

    =IFERROR(LOOKUP(2,1/((MasterList!$A$4:$A$325=G14)*(MasterList!$O$4:$O$325="Y")),MasterList!$O$4:$O$325),"")

    In I14 copied down:

    =IFERROR(LOOKUP(2,1/((MasterList!$A$4:$A$325=G14)*(MasterList!$P$4:$OP$325="Y")),MasterList!$P$4:$P$325),"")

    etc.

  12. #12
    Registered User
    Join Date
    08-16-2021
    Location
    Bristol
    MS-Off Ver
    Office365
    Posts
    26

    Re: Formula for populating data summary tab (Dasboard)

    That's perfect - thank you so much! That has solved my problem completely.

  13. #13
    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. 2406 (Windows 11 23H2 64-bit)
    Posts
    81,836

    Re: Formula for populating data summary tab (Dasboard)

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

    Also, you may not be aware that you can thank those who have helped you by clicking the small star icon located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of those who helped.

  14. #14
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,108

    Re: Formula for populating data summary tab (Dasboard)

    May I offer an alternative solution: PivotTable. PivotTable is easy to use and require little maintenance.

    But first convert your data into an Excel Table (Ctrl+T), so that any new data added will automatically be included in the PivotTable data source.

    Then add PivotTable > Insert > PivotTable > OK > add "Organisation" to Rows section, and "Projects" to Values section.

    Add Slicers to filter.
    Attached Files Attached Files

+ 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] Data from different sheet populating into Summary sheet when new sheets are created
    By TaranakiGirl in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-24-2020, 07:15 PM
  2. [SOLVED] Formula populating data from multiple sheets to summary sheet
    By $mart Group in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-13-2018, 12:58 AM
  3. Populating data from multiple sheets onto a summary sheet
    By janeml in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-10-2014, 07:17 PM
  4. [SOLVED] Update Dasboard using VBA.
    By avid2xl in forum Excel Programming / VBA / Macros
    Replies: 30
    Last Post: 07-17-2013, 06:54 AM
  5. [SOLVED] Populating data into a Summary tab using multiple data tabs
    By S1E in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 03-14-2013, 09:32 PM
  6. Replies: 2
    Last Post: 04-29-2010, 04:27 AM
  7. Finding data on a dump file, populating rows in a summary file
    By SBells in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-21-2008, 08:29 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