cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
MNM
Frequent Visitor

Calculate Sum of Daily difference

Hi Team,

 

Good day! 

 

Is there anyway to get the sum of daily difference from daily total amount?

(1) I am using below dax to get the daily difference but stuck in getting the correct dax to get their total sum of difference and sum of difference per region.

Daily Clearing =
VAR PrevDate =
    MAXX(
        FILTER(
            ALL('TS Raw'[Reporting Date]),
            'TS Raw'[Reporting Date] < SELECTEDVALUE('TS Raw'[Reporting Date])
        ),
        'TS Raw'[Reporting Date]
    )
VAR PrevSum =
    CALCULATE(
        'TS Raw'[Past Due],
        FILTER(
            ALL('TS Raw'[Reporting Date]),
            'TS Raw'[Reporting Date] = PrevDate
        )
    )
RETURN
    IF(
        PrevSum <> 0 && 'TS Raw'[Past Due] <> 0,
        PrevSum - 'TS Raw'[Past Due]
 
(2) alsio I tried using a slicer with Month but it doesnt seem getting the 1st day of each month? is there something wrong with my dax?
 
Thank you!

 

1 REPLY 1
lbendlin
Super User
Super User

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors