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
Anonymous
Not applicable

Delta calculation for user defined period

Hi,

 

I have historized monthly data for customer accounts and I would need to build a measure that calculates the Delta for any period defined by the user.

 

My data looks like this:

 

CustomerIDDateAccumulated costs
131.3.2019100
130.4.2019100
131.5.2019

150

1...

...

231.3.2019100
230.4.2019200
231.5.2019200
2...

...

 

From this data a bunch of measures are calculated, summing up Accumulated costs based on different attributes of the customer.

 

The desired functionality is that the user selects a start date and an end date in a slicer (based on attribute Date in data aboveand Power BI calculates the delta (change) in accumulated costs between those dates.

 

How could Power BI dynamically calculate the delta for any given period defined by the user?

Thanks for the help!

 

1 ACCEPTED SOLUTION

Hi @Anonymous ,

This is because I use the ALL() function, we can change it like below:

Delta =
CALCULATE (
    SUM ( Data[Accumulated costs] ),
    FILTER (
        ALL (Data[Date] ),
        Data[Date] >= SELECTEDVALUE ( 'start date'[Date] )
            && Data[Date] <= SELECTEDVALUE ( 'end date'[Date] )
    )
)

Change the all (data) to ALL (Data[Date] )

Best Regards,

Teige

View solution in original post

3 REPLIES 3
TeigeGao
Solution Sage
Solution Sage

Hi @Anonymous ,

In your scenario, we can create two calendar tables for the start and end date slicer, then create the following measure:

Delta =
CALCULATE (
    SUM ( Data[Accumulated costs] ),
    FILTER (
        ALL ( Data ),
        Data[Date] >= SELECTEDVALUE ( 'start date'[Date] )
            && Data[Date] <= SELECTEDVALUE ( 'end date'[Date] )
    )
)

The result will like below:

PBIDesktop_oQ880Qg1S6.png

Best Regards,

Teige

Anonymous
Not applicable

Hi @TeigeGao ,

 

Thanks for the help!

 

One issue with your solution:

 

For some reason created Delta measure is not allocated correctly into columns in my Matrix visual, all columns show the total delta. 

 

Delta should be allocated by attribute Location. See data below and screenshot of how delta is not allocated.

 

CustomerIDDateAccumulated costsLocation 
131.3.2019100A
130.4.2019100A
131.5.2019150A
231.3.2019100B
230.4.2019200B
231.5.2019200B
331.3.201950C
330.4.201950C
331.5.201950C

 

columns_allocation.PNG

Hi @Anonymous ,

This is because I use the ALL() function, we can change it like below:

Delta =
CALCULATE (
    SUM ( Data[Accumulated costs] ),
    FILTER (
        ALL (Data[Date] ),
        Data[Date] >= SELECTEDVALUE ( 'start date'[Date] )
            && Data[Date] <= SELECTEDVALUE ( 'end date'[Date] )
    )
)

Change the all (data) to ALL (Data[Date] )

Best Regards,

Teige

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.