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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

DAX Help - Product Rank By Year Column

Hello Community, 

 

Can you please help me writing a following DAX  Column .  I have following calculated column which rank the product by date.  I wants the product to be ranked by Year.  

 

Customer ID |      DATE               |  RANK

   1                      1/Jan/2020           1

   1                       2/ Feb/ 2020       2

   1                      13 / Jan/ 2021      1
   1                      14 / Feb/ 2021     2

 

 

 

Product Rank =
RANKX (
FILTER (
'Master_Table' , 'Master_Table'[Customer ID] == EARLIER( 'Master_Table'[Customer ID]  ) ),
'Master_Table'[Date],,
ASC , Dense )
 
Thank you so much for any given help,
 
Many Thanks 
C. 
 
1 ACCEPTED SOLUTION
smpa01
Super User
Super User

@Anonymous  you need a year column first and then you can write a rank column

_rank = RANKX(FILTER('Table','Table'[CustID]=EARLIER('Table'[CustID])&&'Table'[_year]=EARLIER('Table'[_year])),'Table'[Date],,ASC)

 

smpa01_0-1639755865407.png

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

1 REPLY 1
smpa01
Super User
Super User

@Anonymous  you need a year column first and then you can write a rank column

_rank = RANKX(FILTER('Table','Table'[CustID]=EARLIER('Table'[CustID])&&'Table'[_year]=EARLIER('Table'[_year])),'Table'[Date],,ASC)

 

smpa01_0-1639755865407.png

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.