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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors