Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have one table contain two column are activity id and predecessor column, one activityid can have many predecessor and predecessor is in the part of activityid if i want to click activityid to see the predecessor of each activityid and click the predecessor of each activity again for example
When click drill through value A will see B and C abd then click drill through value C will see D and E.
Solved! Go to Solution.
Hi @Jidapa18
Yes. This is a Parent -> Child (Recursive) Drillthrough scenario.
You have:
You want:
Solution:
1) Create a Self Relationship Table
Duplicate the table in Power Query:
Create relationship:
Activity[ActivityID] → Activity_Predecessor[Predecessor]
Single direction.
2) Create Drillthrough Page
Add a Table visual showing:
Activity_Predecessor[ActivityID]
Now:
For Unlimited Levels (Best Practice)
Use Parent-Child DAX Functions:
Path = PATH(Activity[ActivityID], Activity[Predecessor])
Then use:
This handles multi-layer hierarchy properly.
Final Recommendation
Done
=================================================================
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Jaywant Thorat | MCT | Data Analytics Coach
LinkedIn: https://www.linkedin.com/in/jaywantthorat/
Join #MissionPowerBIBharat: https://tinyurl.com/JoinMissionPowerBIBharat
#MissionPowerBIBharat
LIVE with Jaywant Thorat
Hi @Jidapa18 ,
May I ask if you have resolved this issue? Please let us know if you have any further issues, we are happy to help.
Thank you.
Hi @Jidapa18 ,
Thank you @Jidapa18 for your inputs.
We’d like to follow up regarding the recent concern. Kindly confirm whether the issue has been resolved, or if further assistance is still required. We are available to support you and are committed to helping you reach a resolution.
Best Regards,
Chaithra E.
Hi @Jidapa18
Yes. This is a Parent -> Child (Recursive) Drillthrough scenario.
You have:
You want:
Solution:
1) Create a Self Relationship Table
Duplicate the table in Power Query:
Create relationship:
Activity[ActivityID] → Activity_Predecessor[Predecessor]
Single direction.
2) Create Drillthrough Page
Add a Table visual showing:
Activity_Predecessor[ActivityID]
Now:
For Unlimited Levels (Best Practice)
Use Parent-Child DAX Functions:
Path = PATH(Activity[ActivityID], Activity[Predecessor])
Then use:
This handles multi-layer hierarchy properly.
Final Recommendation
Done
=================================================================
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Jaywant Thorat | MCT | Data Analytics Coach
LinkedIn: https://www.linkedin.com/in/jaywantthorat/
Join #MissionPowerBIBharat: https://tinyurl.com/JoinMissionPowerBIBharat
#MissionPowerBIBharat
LIVE with Jaywant Thorat
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 32 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 82 | |
| 66 | |
| 42 | |
| 27 | |
| 25 |