Forum Discussion
Kratos_ZA
Helper I
5 years agoCount based on dynamic filter
Hi Friends, Please assist me with this issue I can't seem to solve: So as you can see in the table, I have customer/franchisee names and below that are the stores they have. I created a...
- 5 years ago
Try:
Count of Store = CALCULATE ( DISTINCTCOUNT ( 'Table'[Cutsomer name] ), FILTER ( Table, NOT ( ISBLANK ( [COLOR FILTER] ) ) ) )
PaulDBrown
Community Champion
5 years agoTry:
Count of Store =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Cutsomer name] ),
FILTER ( Table, NOT ( ISBLANK ( [COLOR FILTER] ) ) )
)
- Kratos_ZA5 years ago
Helper I
Thank you sir! Appreciate the help. This worked perfectly:)