Forum Discussion
Anonymous
6 years agoNot applicable
Finding Duplicate Names with Different Status
Hi, I have a requirement to showcase on a table employees who went from contractor to full time. How can I achieve this? Is there a DAX to create a count or highlight those names which converte...
- Anonymous6 years ago
Hi Anonymous ,
Create a measure like below and add it to visual filter then configure the condition formatting like below.
Measure = CALCULATE(DISTINCTCOUNT('Table'[Status]),ALLEXCEPT('Table','Table'[Name]))Result would be shown as below.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
nandukrishnavs
6 years agoCommunity Champion
Anonymous
Try this measure
contractortofulltime =
var _isContractor= CALCULATE(COUNT('Table'[Status]),'Table'[Status]="Contractor")
var _isFulltime= CALCULATE(COUNT('Table'[Status]),'Table'[Status]="Full Time")
var _contractortofulltime = IF(_isContractor>0&&_isFulltime>0,"Yes","No")
return _contractortofulltime
Now you can apply this measure in visual level filter ( is Yes ).
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
- nandukrishnavs6 years agoCommunity Champion
Anonymous is it not working?