Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I have report do martix table with drill down ,
i want use tooltip to show red frame data .
when mouse move to left table , can tell the how many cases of dimension "serverity"
use topN+others .
Solved! Go to Solution.
Thank you for quick provide solution.
I just find the other way is what i looking for .
https://www.sqlbi.com/articles/filtering-the-top-products-alongside-the-other-products-in-power-bi/
Hi @MichelleTW729 ,
Thank you for the helpful response @Jihwan_Kim !
The provided information is accurate and address your issue. I just wanted to kindly follow up to see if you had a chance to review the previous response provided by Jiwan. I hope it was helpful. If yes, please Accept the answer so that it will be helpful to others to find it quickly.If you have any further questions, feel free to reachout!
Thank you.
Regards,
Pallavi.
Hi,
I tried to create a sample pbix file like below, and please check the below picture and the attached pbix file.
I tried to use WINDOW DAX function to generate TOPN values.
WINDOW function (DAX) - DAX | Microsoft Learn
WINDOW function (DAX) - DAX | Microsoft Learn
Case Top N: =
VAR _topN = 'TopN'[TopN Value]
VAR _t =
WINDOW (
1,
ABS,
_topN,
ABS,
ALL ( serverity[serverity], serverity[sort] ),
ORDERBY ( [Case:], DESC )
)
VAR _others =
CALCULATE ( [Case:], ALL ( serverity[serverity], serverity[sort] ) )
- CALCULATE ( [Case:], _t )
RETURN
SWITCH (
TRUE (),
SELECTEDVALUE ( serverity[serverity] ) = "Others", _others,
HASONEVALUE ( serverity[serverity] ), CALCULATE ( [Case:], KEEPFILTERS ( _t ) ),
[Case:]
)
Thank you for quick provide solution.
I just find the other way is what i looking for .
https://www.sqlbi.com/articles/filtering-the-top-products-alongside-the-other-products-in-power-bi/
Hi @MichelleTW729 ,
Glad to hear you have found a solution! If the issue has been resolved, please mark your post as answer. That way, others with similar issues can more easily find a solution .If you have any questions, feel free to reach out !
Thank you.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 34 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 74 | |
| 71 | |
| 37 | |
| 35 | |
| 25 |