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
Hi All,
Can someone tell me how to show the total % complete in the attached (highlighted yellow) and not the ones marked with a red cross please.
I used the following code in a measure to calculate the % complete for each row:
QVD%Complete = DIVIDE(CALCULATE(COUNT('MC Plus'[Status]),FILTER('MC Plus','MC Plus'[Status]="Complete")),[QVD Count])all I need to do now is show the total % complete column without the other columns automatically being applied.
Would love to hear if there is a simpler solution too.
Thanks in advance.
Solved! Go to Solution.
Hi @jeversf
You may change the measure as below to show them as blank.
Measure =
IF (
ISFILTERED ( 'MC Plus'[Status] ),
BLANK (),
DIVIDE (
CALCULATE (
COUNT ( 'MC Plus'[Status] ),
FILTER ( 'MC Plus', 'MC Plus'[Status] = "Complete" )
),
[QVD Count]
)
)
Regards,
Hi @jeversf
You may try to use below measure:
Measure =
DIVIDE (
CALCULATE (
COUNT ( 'MC Plus'[Status] ),
FILTER ( 'MC Plus', 'MC Plus'[Status] = "Complete" )
),
CALCULATE ( [QVD Count], ALL ( 'MC Plus'[Status] ) )
)
Regards,
Hi Cherie,
Thanks for the response. The issue I'm having isn't so much with the formula, it's with the % column. I just want to show the right most % column (highlighted yellow) and not the two in the middle (marked with a red "X").
Hi @jeversf
You may change the measure as below to show them as blank.
Measure =
IF (
ISFILTERED ( 'MC Plus'[Status] ),
BLANK (),
DIVIDE (
CALCULATE (
COUNT ( 'MC Plus'[Status] ),
FILTER ( 'MC Plus', 'MC Plus'[Status] = "Complete" )
),
[QVD Count]
)
)
Regards,
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 40 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |