Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Display occurrence count using Card visual

Dear all sorry to say that am stuck in task as below details   the case is have coulmn with faultsID, so i want to display count of faultIDs that repeated 50 times or more   lets say, if i have ...
  • az38's avatar
    6 years ago

    Hi Anonymous 

    try smth like

    Measure = 
    var _cnt = CALCULATE(COUNTROWS(Table), ALLEXCEPT(Table, Table[faultsID]) )
    RETURN
    IF(_cnt > 50, 1, 0)