Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Count IF Dax Formula

Hello, I'm trying to count the number of lawyers ( distinct timekeeper ID's) that have more than 500 attorney hours.     My graph below shows the count of all distinct timekeeper ID's, but I would ...
  • amitchandak's avatar
    amitchandak
    6 years ago

    Anonymous , Try like 

    countX(filter(summarize(Table[TimeKeeper ID],"_1",sum(Table[Hour])),[_1]>=500),[TimeKeeper ID])