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 moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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.
Hi @Anonymous ,
According to your description, the highlight part of your DAX code bellow hasn’t express what outcome you want, it should be an expression but not a column.
If you want to calculate the count of rows which is not blank, you can use the following measure.
Here’s some information which may help you to understand.
https://docs.microsoft.com/en-us/dax/calculate-function-dax
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I have measure 1 which counts number of cells and returns "0" instead of blank.
I have measure 2 which is divisional goal.
I'm attempting to create measure 3 to show me percent of goal. The two measures divided by each other.
@Anonymous So generally that should look something like:
PTG Northstar =
DIVIDE(
CALCULATE(
COUNTROWS(CareerCenterGoals)
,CareerCenterGoals[Count of activityID -0 instead of blank] = <some value>
)
,CALCULATE(
COUNTROWS('Goals: Career Center')
,'Goals: Career Center'[Services Goal] = <some value>
)
)
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 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 12 | |
| 9 | |
| 5 | |
| 5 |