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
peterso
Helper II
Helper II

DAX help with strange distribution

Hi everyone,

 

Hoping you can assist with this distribution, i'll do my best to explain. 

 

I'd like to distribute cost by month in such a way where it's cumulative(?) on the graph until the cost reaches it's end date, essentially ignoring the start date. When the end date is reached, the cost drops off.

 

For example, Jan 2018 would have $16,000 in cost (sum of project costs for all projects) and Mar 2021 would have $15,000 in cost (sum of project costs minus project A, since the end date has passed (1/30/2021).

 

Below is the table and I have a date table as well.

ProjectCostStart DateEnd Date
A$1,0001/1/20181/30/2021
B$5,00012/1/20203/2/2022
C$6,0007/27/20203/19/2021
D$3,0009/15/20216/20/2022
E$1,00012/19/20194/30/2021

 

@amitchandak 

 

Thank you in advance.

1 ACCEPTED SOLUTION
v-janeyg-msft
Community Support
Community Support

Hi, @peterso 

 

You can do like this. Create a date table, don't create relationships, and create a measure to calculate the desired result.

Like this:

Date Table = CALENDAR(MIN('Table'[Start Date]),MAX('Table'[End Date]))
Measure = SUMX(FILTER(ALL('Table'),[End Date]>MIN('Date Table'[Date])),[Cost])

11.png

If it doesn’t solve your problem, please feel free to ask me.

 

Best Regards

Janey Guo

 

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

7 REPLIES 7
v-janeyg-msft
Community Support
Community Support

Hi, @peterso 

 

You can do like this. Create a date table, don't create relationships, and create a measure to calculate the desired result.

Like this:

Date Table = CALENDAR(MIN('Table'[Start Date]),MAX('Table'[End Date]))
Measure = SUMX(FILTER(ALL('Table'),[End Date]>MIN('Date Table'[Date])),[Cost])

11.png

If it doesn’t solve your problem, please feel free to ask me.

 

Best Regards

Janey Guo

 

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

v-janeyg-msft
Community Support
Community Support

Hi, @peterso 

 

According to your description, I can understand your calculation logic, sum costs and ignore start date. But it’s not clear what visual you want to use to present the results. Can you add more desired results information?

 

Best Regards

Janey Guo

 

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

amitchandak
Super User
Super User

I reviewed those files earlier. They aren't relevant for this distribution. 

@peterso , please share in table format. Let me try. I need to get $16,000  for Jan 2018, that should be Jan 2021. As there is only one project is there on Jan 2018 ?

@peterso ,Not getting your number. Check Page 2 and table 3

Hi - I think maybe it would help to entirely ignore the start date.

 

Essentially this distribution ignores the start date. It assumes all projects are started as as long as the end date is not past today's date.

 

Once the end date for a project has passed, the project costs drop off.

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.