Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Abdult
Regular Visitor

KPI

Can a drop down of KPI be created in PBI? Think about a situation where a user wants to view a headcount, attrition rate & hires by location. Can the user switch between these measures using dropdown?

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @Abdult

If I understand the request correctly, you can:

1. Create a ancillary 1-column table, KPITable, with the names of the KPIs.  Example:

KPI

Headcount

AttritionRate

Hires

2. Place KPITable[KPI] in a slicer. The user can selct here the desired KPI 

3. Create the measures that will calculate each of the KPIs

[ Headcount_Measure ]

[ AttritionRate_Measure ]

[ Hires_Measure ]

4. Create a generic measure that will calculate the desired KPI based on the user's selection. Something like:

 

GenMeasure =
VAR selected_ =
    SELECTEDVALUE ( KPITable[KPI] )
RETURN
    SWITCH (
        selected_,
        "Headcount", [ Headcount_Measure ],
        "AttritionRate", [ AttritionRate_Measure ],
        "Hires", [ Hires_Measure ]
    )

 

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

View solution in original post

1 REPLY 1
AlB
Community Champion
Community Champion

Hi @Abdult

If I understand the request correctly, you can:

1. Create a ancillary 1-column table, KPITable, with the names of the KPIs.  Example:

KPI

Headcount

AttritionRate

Hires

2. Place KPITable[KPI] in a slicer. The user can selct here the desired KPI 

3. Create the measures that will calculate each of the KPIs

[ Headcount_Measure ]

[ AttritionRate_Measure ]

[ Hires_Measure ]

4. Create a generic measure that will calculate the desired KPI based on the user's selection. Something like:

 

GenMeasure =
VAR selected_ =
    SELECTEDVALUE ( KPITable[KPI] )
RETURN
    SWITCH (
        selected_,
        "Headcount", [ Headcount_Measure ],
        "AttritionRate", [ AttritionRate_Measure ],
        "Hires", [ Hires_Measure ]
    )

 

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.