March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
hello all,
Can yo please explain logic of error.
Measure is:
Solved! Go to Solution.
HI @answeriver ,
Your syntax error is somehwere in this part of DAX:
ALLEXCEPT(
REPORT_IMS, 'REPORT_IMS'[CITY], REPORT_IMS[REGION (groups)], REPORT_IMS[VISIT MONTH]
), // you have closed the ALLEXCEPT clause here
REPORT_IMS[VISIT YEAR],'Attributes','Attributes'[type contract] // this is the line with error I guess
Question for you: What you are trying to achieve here with the line of code above?
You will have to correct your DAX something like this:
= CALCULATE(
DISTINCTCOUNT(REPORT_IMS[SALEPOINT CODE])
)
/
CALCULATE(
DISTINCTCOUNT(REPORT_IMS[SALEPOINT CODE]),
ALLEXCEPT(
REPORT_IMS, 'REPORT_IMS'[CITY], REPORT_IMS[REGION (groups)],
REPORT_IMS[VISIT MONTH], REPORT_IMS[VISIT YEAR]
),
ALLEXCEPT(
'Attributes','Attributes'[type contract]
)
)
Check if the above DAX works. Make sure to write your DAX as clean as possible - specially the closing and opening brackets.
HI @answeriver ,
Please create a new thread for this if this is something different to the syntax error issue that you raised.
HI @answeriver ,
Your syntax error is somehwere in this part of DAX:
ALLEXCEPT(
REPORT_IMS, 'REPORT_IMS'[CITY], REPORT_IMS[REGION (groups)], REPORT_IMS[VISIT MONTH]
), // you have closed the ALLEXCEPT clause here
REPORT_IMS[VISIT YEAR],'Attributes','Attributes'[type contract] // this is the line with error I guess
Question for you: What you are trying to achieve here with the line of code above?
You will have to correct your DAX something like this:
= CALCULATE(
DISTINCTCOUNT(REPORT_IMS[SALEPOINT CODE])
)
/
CALCULATE(
DISTINCTCOUNT(REPORT_IMS[SALEPOINT CODE]),
ALLEXCEPT(
REPORT_IMS, 'REPORT_IMS'[CITY], REPORT_IMS[REGION (groups)],
REPORT_IMS[VISIT MONTH], REPORT_IMS[VISIT YEAR]
),
ALLEXCEPT(
'Attributes','Attributes'[type contract]
)
)
Check if the above DAX works. Make sure to write your DAX as clean as possible - specially the closing and opening brackets.
Thank you Pragati11.
My fault with ). Actualy i need to count count of salepoint code devide on total salepoint cod with filters ALLEXCEPT. Measure from you is working without errors, but filter "type contract" whatever don't showing needs results.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |