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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
ryan_b_fiting
Post Patron
Post Patron

RANK Dates dynamically

Hello Community - 

 

I have a set of data with part_numbers, quantities and dates.  I am looking to be able to rank the dates from newest to oldest so that I can determine if the part is one that we are actively purchasing based on the most recent 3 weeks (sometimes the part is not purchased on the date and there is no line of data for the part for the specific date).

 

I have my RANKX formula ranking the dates 

Rank ReleaseDate_Mon =
RANKX (
ALLSELECTED ( ReleaseDateRanks[ReleaseDate_Mon] ),
CALCULATE ( SELECTEDVALUE ( ReleaseDateRanks[ReleaseDate_Mon]) ),
,
DESC
)
Date.PNG
The output it is producing is correct.  However, when I try to change my date range, the rank does not dynamically change.  Those ranks remain the same when I slim my date range down.
date issue.PNG

 What I need to happen, when I change the range in the example above, I would need 2/1/2021 to have a RANK of 1 1/25/2021 to have a RANK of 2 and so on.

 

I am guessing this is a simple miss by me, but any help would be great.

 

Thanks
Ryan

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@ryan_b_fiting 

 

I've set up a small example with a simple table that only has about 10 dates, then created this measure:

Ranking = 
if( ISINSCOPE( Releases[Release Date] ),
    RANKX(
        ALLSELECTED( Releases[Release Date] ),
        CALCULATE( SELECTEDVALUE( Releases[Release Date] ) ),,
        DESC
    )
)

and it works as expected, adjusting itself to the selected range.

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

@ryan_b_fiting 

 

I've set up a small example with a simple table that only has about 10 dates, then created this measure:

Ranking = 
if( ISINSCOPE( Releases[Release Date] ),
    RANKX(
        ALLSELECTED( Releases[Release Date] ),
        CALCULATE( SELECTEDVALUE( Releases[Release Date] ) ),,
        DESC
    )
)

and it works as expected, adjusting itself to the selected range.

 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.