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

Get Fabric certified for FREE! Don't miss your chance! Learn more

Reply
panchinxd
Frequent Visitor

Difference between dates

Hey guys! so i have a problem, lets think about if i have this table:

 

DateAmount

10/10/2019

100
11/10/2019120
12/10/2019130

 

So i need to get the difference between 12/10/2019 and 10/10/2019

 

130-100 = 30

120-100 = 20

From the beginning to the others day! im actually got this table using filters dates! Date has the filter so i can show me the report of that day!

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @panchinxd ,

 

You need to add a measure similar to this:

 

Value =
SUM ( 'Table'[Amount] )
    - CALCULATE (
        SUM ( 'Table'[Amount] );
        FILTER (
            ALLSELECTED ( 'Table'[Date] );
            'Table'[Date]
                = CALCULATE ( MIN ( 'Table'[Date] ); ALLSELECTED ( 'Table'[Date] ) )
        )
    )

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





View solution in original post

1 REPLY 1
MFelix
Super User
Super User

Hi @panchinxd ,

 

You need to add a measure similar to this:

 

Value =
SUM ( 'Table'[Amount] )
    - CALCULATE (
        SUM ( 'Table'[Amount] );
        FILTER (
            ALLSELECTED ( 'Table'[Date] );
            'Table'[Date]
                = CALCULATE ( MIN ( 'Table'[Date] ); ALLSELECTED ( 'Table'[Date] ) )
        )
    )

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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.