Forum Discussion
Anonymous
4 years agoNot applicable
Count IF
I am trying to learn DAX and have read several blogs, forums etc. and I am still struggling with what I believe should be simple. I have a table that multiple columns however I need to count the numb...
- 4 years ago
Anonymous - did you review https://www.learndax.com/power-bi-countif-and-all-count-functions-in-dax/ ?
For your example:
countif w calculate = CALCULATE(COUNTROWS(yourTableName),yourTableName[Flag] = "Yes")
ChrisMendoza
4 years agoResident Rockstar
Anonymous - did you review https://www.learndax.com/power-bi-countif-and-all-count-functions-in-dax/ ?
For your example:
countif w calculate = CALCULATE(COUNTROWS(yourTableName),yourTableName[Flag] = "Yes")- Anonymous4 years agoNot applicable
Thank you so much. I have not looked at that particular website but I will now.