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! Request now
I have write one dax as below
RiskBucket = var deptAge= if(('Sage Account Receivables'[Outstanding] > 0), DATEDIFF(RELATED('Date'[Date]),TODAY(),DAY),BLANK()) return
SWITCH(TRUE(),(deptAge >0 && deptAge <= 30),"Low",(deptAge >30 && deptAge <= 60),"Medium",(deptAge > 60),"High")
the output of obove dax is
-------------------------------------------
High | Low | Medium
-------------------------------------------
5 | 1 | 3
15 | 11 | 13
25 | 21 | 23
But my requirement is to show in below format
-------------------------------------------
Low | Medium | High
-------------------------------------------
1 | 3 | 5
11 | 13 | 15
21 | 23 | 25
Column should be in ascending order.
@SLR_PBI ,
I could not find 'RiskBucket ' in the table you given. Could you please give the complete sample data?
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!