Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I want to RANK my data according to their respective year and month. Every date that falls in the same year and month, must be in the same group. There are no other criterias needed. Just to rank it and I'm trying to do the syntax below but still doesn't work
RANKX(FILTER(Product,EARLIER([ReceiveDate].[Year])=YEAR([ReceiveDate])&&EARLIER([ReceiveDate].[Month])=[ReceiveDate].[Month]),[Id],,DESC)
Solved! Go to Solution.
@Anonymous , if want to have the same rank for the dates in the month then you need to have ranked on the month year.
Better create month year and rank on it
example
Month Year = FORMAT([Date],"mmm-yyyy")
Month Rank = RANKX(ALL('Date'),'Date'[Month Year Sort],,DESC,Dense)
@Anonymous
Please refrain from using the auto-generated date hierarchies which are meant to be used only in the simplest of models for quick prototyping and NOTHING ELSE. Create your own calendar with all attributes needed. Connect all fact tables to this calendar dimension table instead of having hierarchies in each of the date columns in your fact tables. This is Best Practice which reduces the model bloat and lets you do calculations in a simple and predictable way. As mentioned by @amitchandak, you should create a YearMonth column of the type YYYYMM (integer) and then rank on it.
@Anonymous , if want to have the same rank for the dates in the month then you need to have ranked on the month year.
Better create month year and rank on it
example
Month Year = FORMAT([Date],"mmm-yyyy")
Month Rank = RANKX(ALL('Date'),'Date'[Month Year Sort],,DESC,Dense)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |