Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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!
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.