Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello,
I am currently getting this error message:
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:
I'm using this measure for the creation of a Gaant Chart Project Scheduler.
Any help would be greatly appreciated.
Thanks!
Solved! Go to Solution.
@kelly008 try it
VAR OverallStartDate = [OverallStartDate]
VAR StartDate =
CALCULATE(
MIN(Project[Starting_Date]),
REMOVEFILTERS(dimDate)
)
VAR Result = INT(StartDate - OverallStartDate)
RETURN
Result
@kelly008 try it
VAR OverallStartDate = [OverallStartDate]
VAR StartDate =
CALCULATE(
MIN(Project[Starting_Date]),
REMOVEFILTERS(dimDate)
)
VAR Result = INT(StartDate - OverallStartDate)
RETURN
Result
Amazing thank you!!
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.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 22 | |
| 10 | |
| 8 | |
| 7 | |
| 5 |