Forum Discussion
carlenb
Advocate II
2 years agoWhy doesn't ALLSELECTED work? Slicer issue
Hi, I have the following ProductTable with the column Status: Status Done Ongoing Ongoing Done Ongoing Done Done Done Delayed Delayed I'm trying to cr...
- 2 years ago
carlenb Was getting weird results with CALCULATE but this No CALCULATE approach works just fine.
Var_DonePercentage 1 = DIVIDE( COUNTROWS( FILTER('ProductTable', [Status] = "Done") ), COUNTROWS(ProductTable) ) + 0
Greg_Deckler
Community Champion
2 years agocarlenb Was getting weird results with CALCULATE but this No CALCULATE approach works just fine.
Var_DonePercentage 1 =
DIVIDE(
COUNTROWS(
FILTER('ProductTable', [Status] = "Done")
),
COUNTROWS(ProductTable)
) + 0- carlenb2 years ago
Advocate II
Greg_Deckler genius! Thanks Greg, got it to work. This week suddently looks brighter 🙂