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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Paulyeo11
Impactful Individual
Impactful Individual

How to compute Aging Day to 1 to 30 Day 31 to 60 Day ?

2 ACCEPTED SOLUTIONS
jaideepnema
Solution Sage
Solution Sage

@Paulyeo11  use the following DAX

 

Agein Bucket = SWITCH(TRUE(),

AND(Query1[AGING]>0,Query1[AGING]<=30),"1-30 Days",

AND(Query1[AGING]>30,Query1[AGING]<=60),"31-60 Days",

AND(Query1[AGING]>60,Query1[AGING]<=90),"61-90 Days",

AND(Query1[AGING]>90,Query1[AGING]<=120),"91-120 Days",

AND(Query1[AGING]>120,Query1[AGING]<=150),"121-150 Days",

AND(Query1[AGING]>150,Query1[AGING]<=180),"151-180 Days",BLANK())

Here is the required resultcommunity.png

Appreciate a Kudos if this resolves your Query !!

View solution in original post

v-robertq-msft
Community Support
Community Support

Hi, @Paulyeo11 

According to your description, you want to make the value of measure[AGING] displays Split date counts, you can try this measure to replace your current measure:

AGING =

var _datediff=Datediff([AR Invoice Date],today(),day)

return

SWITCH(

    TRUE(),

    _datediff<=30,"1 to 30 Day",

    _datediff<=60,"31 to 60 Day",

    "Over 60 day"

)

And you can get what you want, like this:

v-robertq-msft_0-1605598760412.png

 

You can download my test pbix file here

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
v-robertq-msft
Community Support
Community Support

Hi, @Paulyeo11 

According to your description, you want to make the value of measure[AGING] displays Split date counts, you can try this measure to replace your current measure:

AGING =

var _datediff=Datediff([AR Invoice Date],today(),day)

return

SWITCH(

    TRUE(),

    _datediff<=30,"1 to 30 Day",

    _datediff<=60,"31 to 60 Day",

    "Over 60 day"

)

And you can get what you want, like this:

v-robertq-msft_0-1605598760412.png

 

You can download my test pbix file here

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Robert 

your script very smart , it will sort by itself.

Paul

Hi Robort

Thank you very much

Paul

jaideepnema
Solution Sage
Solution Sage

@Paulyeo11  use the following DAX

 

Agein Bucket = SWITCH(TRUE(),

AND(Query1[AGING]>0,Query1[AGING]<=30),"1-30 Days",

AND(Query1[AGING]>30,Query1[AGING]<=60),"31-60 Days",

AND(Query1[AGING]>60,Query1[AGING]<=90),"61-90 Days",

AND(Query1[AGING]>90,Query1[AGING]<=120),"91-120 Days",

AND(Query1[AGING]>120,Query1[AGING]<=150),"121-150 Days",

AND(Query1[AGING]>150,Query1[AGING]<=180),"151-180 Days",BLANK())

Here is the required resultcommunity.png

Appreciate a Kudos if this resolves your Query !!

Hi All 

Can some one help me how to make X axiz can sort in sequences ?

Paulyeo11_0-1605651191466.png

 

Hi Sir

This is beyond my expectation. This is better approach . ( my approach no goos , i create many field. )

Thank you 

Paul

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.