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
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
Super User
Super User

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...


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.