Forum Discussion
tebtim19
5 years agoHelper IV
Date Sortfo
Is anyone here know how to sort date for my slicer. Doesn't look like sorted
- Anonymous5 years ago
tebtim19
5 years agoHelper IV
Hi Thank you this solve my problem.
I have one more thing to ask.
I am trying to get the total number of male current employees.
Males = COUNTROWS(FILTER('SAP Table'[Gender] = "Male"))
But everytime I filtered it with my year month slicer it doesn't seems to work.
I need to this so I could also get the Average of Male. Hopw you can help
Anonymous
5 years agoNot applicable
Hello tebtim19 ,
Try this
males = CALCULATE(COUNTROWS(FILTER(SAP Table,SAP Table[Gender]="Male")),ALLSELECTED(Dates[Year Month]))
- tebtim195 years agoHelper IV
Hi Still doesn't work when I select 2021 Feb I only got 3 males, which is supposed to be 209. I think the only number counter is the count of male added, but what I need is the total number of male filtered by month year.