Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
lr86868
New Member

Dynamic Ranking Using 'Year/Quarter' String Field

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...

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

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] )

 

 

jdbuchanan71_0-1713287022194.png

 

 

View solution in original post

1 REPLY 1
jdbuchanan71
Super User
Super User

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] )

 

 

jdbuchanan71_0-1713287022194.png

 

 

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.