Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago

DAX Error: A function 'PLACEHOLDER" has been used

I'm attempting to create a measure to divide one card by another. 

Services Count / Services Goal = Percent to Goal

 

PTG Northstar =
DIVIDE(
CALCULATE(
COUNTROWS(CareerCenterGoals)
,CareerCenterGoals[Count of activityID -0 instead of blank]
)
,CALCULATE(
COUNTROWS('Goals: Career Center')
,'Goals: Career Center'[Services Goal]
)
)

 

I recieved this error: A function 'PLACEHOLDER' has been used in a True/False expression that is used as a table filter expression. This is not allowed. 

4 Replies