Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
Need help in tweaking this DAX to accomodate one more date - Sent Date.
So it should rank dynamically based on Submit date as well as Sent date
RANK3 = RANKX (
FILTER ( ALLSELECTED (Table1), Table1[FullName] = SELECTEDVALUE ( Table1[FullName] ) ),
CALCULATE ( SELECTEDVALUE ( Table1[SubmitDate] )),,DESC,DENSE )
Thanks
Solved! Go to Solution.
HI @Anonymous ,
Do you mean rank by multiple columns? If this is a case, I'd like to suggest you use ISONORAFTER function:
RANK3 =
COUNTROWS (
FILTER (
ALLSELECTED ( Table1 ),
Table1[FullName] = SELECTEDVALUE ( Table1[FullName] )
&& ISONORAFTER (
Table[SubmitDate], MAX ( Table[SubmitDate] ), ASC,
Table[SentDate], MAX ( Table[SentDate] ), ASC
)
)
)
Reference link:
Regards,
Xiaoxin Sheng
HI @Anonymous ,
Do you mean rank by multiple columns? If this is a case, I'd like to suggest you use ISONORAFTER function:
RANK3 =
COUNTROWS (
FILTER (
ALLSELECTED ( Table1 ),
Table1[FullName] = SELECTEDVALUE ( Table1[FullName] )
&& ISONORAFTER (
Table[SubmitDate], MAX ( Table[SubmitDate] ), ASC,
Table[SentDate], MAX ( Table[SentDate] ), ASC
)
)
)
Reference link:
Regards,
Xiaoxin Sheng
Hi @Anonymous ,
if your data is not confidential please share the sample data and expected output.
Best Regards,
Mail2inba4
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |