Forum Discussion
Anonymous
2 years agoNot applicable
Clickable table/Matrix value to redirect on another report same as of Drill through functionality.
I'm reaching out to seek your expertise and guidance on implementing a specific functionality within Power BI that resembles the drill-through feature. Currently, I'm working on a project where I ne...
AnassEss
2 years agoHelper I
Hello there,
To navigate between reports, you must first ensure that you have the correct relations between the data in your destination and origin report, once you have ensured that the relations are done correctly in the model view then you may use this dax meassure: ReportNav = SELECTEDVALUE(YourTable[YourField])
If that is not enough you may try: Dettail = CALCULATE(SUM(FactTable[Value]), FactTable[Dimension] = SELECTEDVALUE(DrillThroughTable[Dimension]))