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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
SQUILES
Helper I
Helper I

sum range date

HI, everyone...

 

I have have a table with dates and values, i need to calculate (column) two totals.

 total1 = current value  + sum(13 days previous of this date)

 total2 = sum(next 14 days of the previous of that date)

Example:

 Total1 for 7/1/2019 = value of 7/1/2019 + range 6/30/2019 - 6/18/2019 (13 days)

 Total2 for 7/1/2019 = range from 6/17/2019 to 6/4/2019 (next 14 days)

 

Any help

 

range_date_total.JPG

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

Hi @SQUILES ,

 

To create measures as below.

total1 = 
VAR dat =
    DATE ( 2019, 07, 01 )
VAR last13 = dat - 13
RETURN
    CALCULATE (
        SUM ( 'Table'[vale] ),
        FILTER ( 'Table', 'Table'[date] >= last13 && 'Table'[date] <= dat )
    )
total 2 = 
VAR d =
    DATE ( 2019, 07, 01 )
VAR a = d - 14
VAR c = a - 13
RETURN
    CALCULATE (
        SUM ( 'Table'[vale] ),
        FILTER ( 'Table', 'Table'[date] <= a && 'Table'[date] >= c )
    )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

3 REPLIES 3
v-frfei-msft
Community Support
Community Support

Hi @SQUILES ,

 

To create measures as below.

total1 = 
VAR dat =
    DATE ( 2019, 07, 01 )
VAR last13 = dat - 13
RETURN
    CALCULATE (
        SUM ( 'Table'[vale] ),
        FILTER ( 'Table', 'Table'[date] >= last13 && 'Table'[date] <= dat )
    )
total 2 = 
VAR d =
    DATE ( 2019, 07, 01 )
VAR a = d - 14
VAR c = a - 13
RETURN
    CALCULATE (
        SUM ( 'Table'[vale] ),
        FILTER ( 'Table', 'Table'[date] <= a && 'Table'[date] >= c )
    )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

@v-frfei-msft  thanks, very much....

 

The Dax work excellent!!! very grateful!!! thanks again.

Greg_Deckler
Community Champion
Community Champion

You are going to need to use EARLIER. See my article on Mean Time Between Failure (MTBF) which uses EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/3395...



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors