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
ViorelCa
Helper I
Helper I

Variable error powerpivot

Dear Colleagues,

 

When I calculate this single expression it is ok:

 

LastActualDate:=LASTNONBLANK(Clasa6si7[FECHA],1)

 

But when I wrap it inside a variable, I get the error "The syntax for LastActualDate is incorrect"

 

Am I doing something wrong? (Excel2013 Powerpivot)

 

BudgetYTD:=

 

VAR

LastActualDate:=LASTNONBLANK(Clasa6si7[FECHA],1)

RETURN

 

CALCULATE(
SUM(AppendOGOAll[P2017cost]),
FILTER(
ALL(CalendarTable[Calendar Date]),
CalendarTable[Calendar Date] <= LastActualDate
))

1 ACCEPTED SOLUTION

Hi @ViorelCa

 

1. DAX variables are only available from the 2015 edition of DAX so: PowerPivot for Excel 2016, Power BI Desktop & SSAS 2016. Thus, not in PowerPivot for Excel 2013.

2. In any of the three softwares mentioned above, you should remove the " " in the variable definition and also remove the 'filter' function (which is useless thanks to the variable).

This one would work:

 

BudgetYTD = VAR LastActualDate=LASTNONBLANK(Clasa6si7[FECHA],1) RETURN
Calculate( SUM(AppendOGOAll[P2017cost]) , CalendarTable[Calendar Date] <= LastActualDate)

 

 

 

View solution in original post

2 REPLIES 2

Hi @ViorelCa

 

1. DAX variables are only available from the 2015 edition of DAX so: PowerPivot for Excel 2016, Power BI Desktop & SSAS 2016. Thus, not in PowerPivot for Excel 2013.

2. In any of the three softwares mentioned above, you should remove the " " in the variable definition and also remove the 'filter' function (which is useless thanks to the variable).

This one would work:

 

BudgetYTD = VAR LastActualDate=LASTNONBLANK(Clasa6si7[FECHA],1) RETURN
Calculate( SUM(AppendOGOAll[P2017cost]) , CalendarTable[Calendar Date] <= LastActualDate)

 

 

 

Dear Tristan,

Thanks a lot for your quick reply!
Now it is clear!
How confuzing are these differences in the Microsoft BI microsystem!

Kind regards,
Viorel

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.

Top Solution Authors