cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
ryan_b_fiting
Post Patron
Post Patron

Calculation Item - Rolling 7 Day Total

Hello Community - 

I am having an issue creating a Calculation Item in the Tabular Editor for a Rolling 7 Day Total.  When I put my DAX measure below in tabular editor I get an error: "Expression - The end of the input was reached"

 

Below is my measure (very simple) that I am using, and I am not sure where this is going wrong?  Any insight to this would be GREATLY appreciated.

CALCULATE( 
    SELECTEDMEASURE(),                                 
    DATESINPERIOD(Date_Table[Date],            
        LASTDATE(Date_Table[Date]),-7,DAY )

 

Thank you!

Ryan F

1 ACCEPTED SOLUTION
SergioSilvaPT
Super User
Super User

Hi @ryan_b_fiting ,

 

You're missing a parenthesis in the end?

 

 

CALCULATE( 
    SELECTEDMEASURE(),                               
    DATESINPERIOD(Date_Table[Date],           
        LASTDATE(Date_Table[Date],-7,DAY )
        )

 

 

Regards,

Sérgio Silva 

 
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Regards,
Sérgio Silva

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

Check out my blog for tips and tricks about Power BI: https://pbibits.wordpress.com/

View solution in original post

2 REPLIES 2
SergioSilvaPT
Super User
Super User

Hi @ryan_b_fiting ,

 

You're missing a parenthesis in the end?

 

 

CALCULATE( 
    SELECTEDMEASURE(),                               
    DATESINPERIOD(Date_Table[Date],           
        LASTDATE(Date_Table[Date],-7,DAY )
        )

 

 

Regards,

Sérgio Silva 

 
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Regards,
Sérgio Silva

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

Check out my blog for tips and tricks about Power BI: https://pbibits.wordpress.com/

@SergioSilvaPT wow, I guess I should have focused a little better!  Thanks for the extra eyes on my measure!

Helpful resources

Announcements
Join Arun Ulag at MPPC23

Join Arun Ulag at MPPC23

Get a sneak peek into this year's Power Platform Conference Keynote.

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!

Top Solution Authors