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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
TomFarmer24
Frequent Visitor

Slicer - Multiselect

Good Evening All,

 

A quick question from a PowerBI novice. 

 

I have a two slicers that are a filter for a variety of different projects. Slicer 1 drills down by projects in a specific location. Slicer 2 drills down to which team the project is in.

 

The data that is shown on my dashboard are ID numbers of projects, descriptions, RAG status and financials. 

 

When I select an area, it shows all the IDs, RAGs, Descriptions but only one financial table (as that is all that is possible).

 

Is there a way when I select the overall area, no financials are shown (or even better a total of all the projects budgets). Then when you select an individual project it shows the specific financials? 

 

Many thanks,

Tom 

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

If I understand correctly, there are two slicers: Location and Team

If so, then you can take a look at the ISFILTERED or HASONEVALUE functions and combine with IF to display the totals or even specifics.

 

Something like: 

measure = IF(ISFILTERED([Team]),

    // show specifics

    // show blanks or total
)

View solution in original post

1 REPLY 1
vicky_
Super User
Super User

If I understand correctly, there are two slicers: Location and Team

If so, then you can take a look at the ISFILTERED or HASONEVALUE functions and combine with IF to display the totals or even specifics.

 

Something like: 

measure = IF(ISFILTERED([Team]),

    // show specifics

    // show blanks or total
)

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors