Forum Discussion
Tinus1905
2 years agoResolver I
PowerBi filter multiple columns with multiple filters
Hi, Im struggling a little bit with an measure. I have the following table. ID Status Type Name 123 accept yes yellow 123 accept yes 456 not possib...
- 2 years ago
This formula must be it.
Count =
CALCULATE(
DISTINCTCOUNT(tableA[ID]),(tableA[Type] = "yes" || tableA[Type] = "no") ||
(tableA[Status] = "not possible" &&
tableA[Name] = "green"))The only question I have now is, ID 456 is double and with distinctcount I get 1 count. But will it count the row with column "name" and "green" value or the other one. So is distinccount after the filters has been set or is it before the filters.