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 am struggling to calculate a measure using the RANKX() function. I would like to create a dynamic ranking measure or column dependendent on my [Year/Quarter] field, which is a text format as the value is the year and Q#. Is there a way to do this without a date field? Below is an example of what I am hoping to accomplish:
For example:
2024 Q3 Rank: 1
2024 Q2 Rank: 2
2024 Q1 Rank: 3
2023 Q4 Rank: 4
and when my data is updated next quarter, I would like the ranks to update:
2024 Q4 Rank: 1
2024 Q3 Rank: 2
2024 Q2 Rank: 3
So on...
Solved! Go to Solution.
I think you can do it with a couple measure.
The first one calculates an integer value based on the year quarter string.
Int YQ =
VAR _YQ = SELECTEDVALUE ( 'YourTable'[Year Qtr] )
RETURN
INT( LEFT ( _YQ,4 ) & RIGHT ( _YQ, 1 ) )
Then you can use that in a RANKX.
Ranking Measure = RANKX ( ALLSELECTED ( 'YourTable'[Year Qtr] ), [Int YQ] )
I think you can do it with a couple measure.
The first one calculates an integer value based on the year quarter string.
Int YQ =
VAR _YQ = SELECTEDVALUE ( 'YourTable'[Year Qtr] )
RETURN
INT( LEFT ( _YQ,4 ) & RIGHT ( _YQ, 1 ) )
Then you can use that in a RANKX.
Ranking Measure = RANKX ( ALLSELECTED ( 'YourTable'[Year Qtr] ), [Int YQ] )
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 |
|---|---|
| 54 | |
| 37 | |
| 34 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 72 | |
| 72 | |
| 38 | |
| 35 | |
| 26 |