Skip to content
Discussion options

You must be logged in to vote

This is not a bug. DAX Studio executes DAX queries and the syntax you have there is not a valid dax query.

One possible query syntax for executing a measure like in your example and returning a single value would be something like the following:

DEFINE MEASURE
qry_Employees[POD Vacant] =
CALCULATE (
[VacCnt],
FILTER(qry_Employees, [Division_Name] = "Plant Operations Division")
)
EVALUATE
{ [POD Vacant] }

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by dgosbell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants