Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Active Head Count

Hi Team,

Hope you all are doing well.

Here is my data sample

 


I am calculating active headcount by month by this DAX code


ACTIVE HEAD COUNT BY MONTH =
VAR currentmonth = MAX('CALENDAR'[MONTH])
VAR RESULT=
CALCULATE(DISTINCTCOUNT(Sheet1[EID]),FILTER(Sheet1,Sheet1[Hire Month]<=currentmonth && OR(ISBLANK(Sheet1[Resign Month]),Sheet1[Resign Month]>currentmonth)))
Return
RESULT

I am getting correct no by when i am putting Calendar[Month] column in the chart/table.
I want to calculate this by Year, Quarter, Month and Day so that i can show it by Date Hierachy (year - drill down - Quarter - drill down - Month - drill down - day) in same chart.

Can you guys help me achieve this?

Thanks

6 Replies