cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
kelly008
Helper I
Helper I

Syntax For ')' Error Message

Hello,

 

I am currently getting this error message: 

 

kelly008_0-1668605576244.png

Text version:   The syntax for ')' is incorrect. (DAX(VAR OverallStartDate = [OverallStartDate]VAR StartDate = CALCULATE( MIN(Project[Starting_Date]), REMOVEFILTERS(dimDate) )VAR Result = INT(StartDate - OverallStartDate)RETURN)).

 

For this Measure:

 

kelly008_1-1668605594033.png

I'm using this measure for the creation of a Gaant Chart Project Scheduler. 

 

Any help would be greatly appreciated.

Thanks!

1 ACCEPTED SOLUTION
DimaMD
Super User
Super User

@kelly008  try it

VAR OverallStartDate = [OverallStartDate]
VAR StartDate = 
CALCULATE( 
MIN(Project[Starting_Date]), 
REMOVEFILTERS(dimDate) 
)
VAR Result = INT(StartDate - OverallStartDate)
RETURN
Result

 


__________________________________________

Thank you for your like and decision

__________________________________________

Greetings from Ukraine

View solution in original post

3 REPLIES 3
DimaMD
Super User
Super User

@kelly008  try it

VAR OverallStartDate = [OverallStartDate]
VAR StartDate = 
CALCULATE( 
MIN(Project[Starting_Date]), 
REMOVEFILTERS(dimDate) 
)
VAR Result = INT(StartDate - OverallStartDate)
RETURN
Result

 


__________________________________________

Thank you for your like and decision

__________________________________________

Greetings from Ukraine

Amazing thank you!!

daXtreme
Super User
Super User

@kelly008 

 

Some highlights:

 

1. Do not name your variables exactly as your measures.

2. The RETURN must return something. Can't be hanging all by itself.

3. Please always format your DAX correctly.

 

If you don't want to format by hand, use www.daxformatter.com. This free tool will also highlight any syntax errors to you.

Helpful resources

Announcements
Winner of T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Find out who won the T-Shirt Design Challenge and the top 3 finalists.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.