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
Solved! Go to Solution.
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
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
@SergioSilvaPT wow, I guess I should have focused a little better! Thanks for the extra eyes on my measure!
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!
User | Count |
---|---|
118 | |
74 | |
65 | |
51 | |
49 |
User | Count |
---|---|
184 | |
104 | |
82 | |
79 | |
78 |