Mastering DAX: How to Rank a COUNT output in Power BI

preview_player
Показать описание
In this tutorial, we'll be diving into the world of Data Analysis Expressions (DAX) in Power BI to learn how to rank a COUNT output. Ranking data is a fundamental aspect of data analysis, and DAX formulas can help make the process more efficient and effective. Whether you're a beginner or an experienced user of Power BI, this tutorial will provide you with the skills to write DAX formulas that rank COUNT data accurately and efficiently.

☕ Buy Me a Coffee? Your support is much appreciated!
-------------------------------------------------------------------------------------
🔑 Venmo: @Jie-Jenn

💳 Support my channel so I can continue making free contents
---------------------------------------------------------------------------------------------------------------

#powerbi #pbi
Рекомендации по теме
Комментарии
Автор

Thank you for this video! Question: I added DENSE so the rankings will be in chronological order. However, several are "tied" and have the same ranking. Do you know how to overcome this with your formula?

HelloSusieQ
Автор

I tried this and got an error. Here is my measure?

NC Rank =
VAR ncREF_count =
RETURN
CALCULATE(
RANKX(
VALUES(FARMS_ADHOC_ASSESSMENT[NCREFERENCE]),
CALCULATE(

),
ncREF_count,
DESC
), ALL(FARMS_ADHOC_ASSESSMENT)
))

jsummersjsummers