Forum Discussion
Anonymous
4 years agoNot applicable
Discount Count
Hi Experts, Below is my sample data. Marked red ones are staff who resigned. I need to the count distinctvalues of staff Name who haven't resigned. Please helpe me! Thank you
- 4 years agoResult measure : =COUNTROWS (SUMMARIZE (FILTER ( 'Table', NOT ( CONTAINSSTRING ( 'Table'[Staff Name], "resign" ) ) ),'Table'[Staff Name]))
Jihwan_Kim
4 years agoSuper User
Result measure : =
COUNTROWS (
SUMMARIZE (
FILTER ( 'Table', NOT ( CONTAINSSTRING ( 'Table'[Staff Name], "resign" ) ) ),
'Table'[Staff Name]
)
)
- Anonymous4 years agoNot applicable
Awesome. Thank you very much Jihwan