Excel Dashboard

Bobby80

New Member
Joined
Mar 14, 2011
Messages
4
Hi Everyone,
I'm working on the new dashbaord. I have about 7 KPIs in the dasboard with the actions for a week separately for each centre. I have four different centres to choose. I want to show the 7 KPIs and actions under each individual centre name by selecting the the dropdown box at the top. The KPI's and actions will be differnet for each centre and wil be different each weekly..could you please help me in setting up with the dashboard.

Thanks in advance..
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Hi Bobby80

It's a bit hard to suggest without knowing how you want to display the data. A sample would go a long way to help. That said perhaps you can draw something from this example.

Say sheet2 houses a list of your KPI's and each is assigned to a centre. First we create a list of distinct centres so that you can use this for a validation list:
Excel Workbook
ABCD
1CentreKPIrng_DistinctCentres
2Centre1C1KPI1Centre1
3Centre1C1KPI2Centre2
4Centre1C1KPI3Centre3
5Centre1C1KPI4Centre4
6Centre1C1KPI5#NUM!
7Centre1C1KPI6#NUM!
8Centre1C1KPI7#NUM!
9Centre2C2KPI1#NUM!
10Centre2C2KPI2#NUM!
11Centre2C2KPI3#NUM!
12Centre2C2KPI4#NUM!
13Centre2C2KPI5#NUM!
14Centre2C2KPI6#NUM!
15Centre2C2KPI7#NUM!
16Centre3C3KPI1#NUM!
17Centre3C3KPI2#NUM!
18Centre3C3KPI3#NUM!
19Centre3C3KPI4#NUM!
20Centre3C3KPI5#NUM!
21Centre3C3KPI6#NUM!
22Centre3C3KPI7#NUM!
23Centre4C4KPI1#NUM!
24Centre4C4KPI2#NUM!
25Centre4C4KPI3#NUM!
26Centre4C4KPI4#NUM!
27Centre4C4KPI5#NUM!
28Centre4C4KPI6#NUM!
29Centre4C4KPI7#NUM!
Sheet2
Excel 2010
#VALUE!
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.

Formula in D2 copied through to D29. Then create a new name, called 'rng_DistinctCentres'. Refers to:
=INDEX(Sheet2!$D:$D,2,0):INDEX(Sheet2!$D:$D,MATCH(REPT("z",255),Sheet2!$D:$D,1))

Now, assume you want to have a validation cell in Sheet1 that allows the user to choose a centre of particular interest. When the user makes his/her choice, each of the relevant KPI's will be listed in B5:B11. In this example B2 houses a list validation that refers to 'rng_DistinctCentres'.
Excel Workbook
AB
2CentreCentre1
3
4
51.C1KPI1
62.C1KPI2
73.C1KPI3
84.C1KPI4
95.C1KPI5
106.C1KPI6
117.C1KPI7
Sheet1
Excel 2010
#VALUE!
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.

Formula in B5 is copied down through to B11.
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,053
Latest member
Mesh

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top