Reply
vavs
New Member
Partially syndicated - Outbound

Configuring slicers act differently on visuals on the same page

I have a report that has several pages with multiple charts and graphs on each page. I have a series of slicers which go from division, vp, supervisior and user.  The slicers are cascaded so when I select division, I only see the VPs for that division and so on down the line.

I am working on the summary page which has a bar chart displaying the completion rate of users at the division level.  When I only select the division level, I get the correct information.  If I select a VP for that divsion, the report displays that VPs completion rate for the division rather that what the division actually did.  The axis is based on a measure which calculates a percentage using the following dax :

COALESCE(CALCULATE(DIVIDE([QualCompY],[QualCompleteTotal])),0)
 
2 REPLIES 2
v-heq-msft
Community Support
Community Support

Syndicated - Outbound

Hi @vavs ,

Thanks for bhanu_gautam reply.

You can also try the following dax

Measure =
COALESCE(
    CALCULATE(
        DIVIDE([QualCompY], [QualCompleteTotal]),
        ALL('Table'[VP], 'Table'[Supervisor], 'Table'[User])
    ),
    0
)

 

Best regards,
Albert He


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

bhanu_gautam
Super User
Super User

Syndicated - Outbound

@vavs , Try using ALL 

 

COALESCE(CALCULATE(DIVIDE([QualCompY],[QualCompleteTotal]), ALL(VP)), 0)



Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)