Forum Discussion
jeversf
7 years agoFrequent Visitor
Show % Complete Total Only
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 ca...
- 7 years ago
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,
jeversf
7 years agoFrequent Visitor
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").
v-cherch-msft
7 years agoMicrosoft Employee
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,