Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Dear Power Bi experts,
I am trying to put row numeration on my table visualization and to accomplish this task a came up with RANKX(I would be happy if there are simple ways to put just row numeration to the table, because RANKX is too complex). However, my Rankx is working fine if there is any filter until I apply any filter from the Filter section. Below I attached 2 versions of my table(№ column is important). The first table shows ranking correctly, but when I applied the Top 30 filters by import value, it is showing my not proper ranking order. What is the problem?
My measure is
Solved! Go to Solution.
@Anonymous
I am not sure about your model, try the following measure, if you could share a sample file I can check on it.
№ = VAR ProductRank =
RANKX(
ALLSELECTED(stat_kgd_2011_2020_monthly), CALCULATE(SUM(stat_kgd_2011_2020_monthly[Import value])),,DESC)
RETURN
ProductRank________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon on the right if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hi @Anonymous ,
Just try the following measure:
№ =
VAR A =
CALCULATETABLE (
ALLSELECTED (
stat_kgd_2011_2020_monthly[2 digit],
stat_kgd_2011_2020_monthly[Group]
),
ALLSELECTED ( stat_kgd_2011_2020_monthly )
)
RETURN
RANKX (
A,
CALCULATE ( SUM ( stat_kgd_2011_2020_monthly[Import value] ) ),
,
DESC
)
If it doesn't work, please show us some sample data by onedrive for business. Thanks for your understanding and support.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
@Anonymous , how are you using top N filter.
Top N visual level filter ?
or like
Top 10 City Rank = CALCULATE([Sales],TOPN(10,all(Geography[City]),[Sales],DESC),VALUES(Geography[City Id]))
or
sumx(filter(stat_kgd_2011_2020_monthly,[№ ]<=30),stat_kgd_2011_2020_monthly[Import value])
@amitchandak I am filtering from the right side table in the power Bi interface, so a I am not creating any measure for TopN
Hi @Anonymous ,
Just try the following measure:
№ =
VAR A =
CALCULATETABLE (
ALLSELECTED (
stat_kgd_2011_2020_monthly[2 digit],
stat_kgd_2011_2020_monthly[Group]
),
ALLSELECTED ( stat_kgd_2011_2020_monthly )
)
RETURN
RANKX (
A,
CALCULATE ( SUM ( stat_kgd_2011_2020_monthly[Import value] ) ),
,
DESC
)
If it doesn't work, please show us some sample data by onedrive for business. Thanks for your understanding and support.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
@Anonymous
I am not sure about your model, try the following measure, if you could share a sample file I can check on it.
№ = VAR ProductRank =
RANKX(
ALLSELECTED(stat_kgd_2011_2020_monthly), CALCULATE(SUM(stat_kgd_2011_2020_monthly[Import value])),,DESC)
RETURN
ProductRank________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon on the right if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 40 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |