March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
I am trying to rank the usage day for a set of groups. I have used the below formula but the ranking formula is not working.
DayRank_ =
RANKX (
FILTER (
ALL ( VIEW_SCOREINFO_ALL ),
VIEW_SCOREINFO_ALL[GroupId] = EARLIER ( VIEW_SCOREINFO_ALL[GroupId] )
&& VIEW_SCOREINFO_ALL[Session Date] = EARLIER ( VIEW_SCOREINFO_ALL[Session Date])
),
VIEW_SCOREINFO_ALL[Index],
,
ASC,
DENSE
)
The result is as follows:
Can someone help me with the formula.
The way I want is also given here.
Thank You,
Kumar Ashwarya
Solved! Go to Solution.
@Kumar11109,
Please check this modified PBIX file.
Regards,
Lydia
@Kumar11109,
Create the rank column using DAX below.
RANK = RANKX(FILTER(VIEW_SCOREINFO_ALL,VIEW_SCOREINFO_ALL[GroupId]=EARLIER(VIEW_SCOREINFO_ALL[GroupId])),VIEW_SCOREINFO_ALL[Session Date],,ASC)
Regards,
Lydia
This formula is not working. I am getting the below result.
Its not working. :-C
I think I should have more clear, my data set looks something like this.
Thats why I think its not working. I also used to Dense so that it doesn't skip ranking for a group, but that didn't work either.
@Kumar11109,
You have different sample data as before. What field do you want to rank this time? And what is your expected result?
Regards,
Lydia
I still want to rank my "session date," for each group id.
@Kumar11109,
Please check this modified PBIX file.
Regards,
Lydia
Its working with Dense. It was summing the rank created. I had to click on "Don't Summarize". So stupid of me. Thank You.
Can you help with a conituation of this problem. I have created another topic for it.
@Kumar11109,
Please check this PBIX file . If there is any issue, please share your PBIX file to me.
Regards,
Lydia
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
87 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |