Hi,
I am struggling to get a result for COUNTROWS based on multiple critera.
From the table I am trying to filter all Males with a grade of either C,D or E and to give me the count of rows.
This is what I have:
CALCULATE(COUNTROWS(Tbl_ORG001),Tbl_ORG001[HCD_Gender] = "M",Tbl_ORG001[HCD_Band] = "C",Tbl_ORG001[HCD_Band] = "D",Tbl_ORG001[HCD_Band] = "E")
This does not come back with an error, but just displays nothing in the column.
Can anyone help?