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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
SLR_PBI
Regular Visitor

calculated column ,header position

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. 

 

1 REPLY 1
v-yuta-msft
Community Support
Community Support

@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.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors