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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
dixityashovardh
Frequent Visitor

How to Show Drill down path in Power BI?

I am using Pie chart and using drill down in that. Now I have a requirement where I need to show the Drill Down Path user has taken to come to a particular chart hierarchy.  

 

Something like :

Country > State > City  

 

Is anyone aware of such property \ custom visual in Power BI?

1 ACCEPTED SOLUTION

@dixityashovardh,

 

You may drag the measure below to Tooltips.

Measure =
SELECTEDVALUE ( Table1[Country] )
    & IF (
        NOT ( ISBLANK ( SELECTEDVALUE ( Table1[State] ) ) ),
        ">" & SELECTEDVALUE ( Table1[State] )
    )
    & IF (
        NOT ( ISBLANK ( SELECTEDVALUE ( Table1[City] ) ) ),
        ">" & SELECTEDVALUE ( Table1[City] )
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-chuncz-msft
Community Support
Community Support

@dixityashovardh,

 

The Title and Legend already show the hierarchy.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks, but I am more over looking for the exact path which user has taken ( Not the Column Names from the table but the Values)

 

like - USA > Washington > Seattle

@dixityashovardh,

 

You may drag the measure below to Tooltips.

Measure =
SELECTEDVALUE ( Table1[Country] )
    & IF (
        NOT ( ISBLANK ( SELECTEDVALUE ( Table1[State] ) ) ),
        ">" & SELECTEDVALUE ( Table1[State] )
    )
    & IF (
        NOT ( ISBLANK ( SELECTEDVALUE ( Table1[City] ) ) ),
        ">" & SELECTEDVALUE ( Table1[City] )
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks @v-chuncz-msft!! Worked Well. 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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