Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi all,
I am trying to calculate previous months headcount. I have the below to calculate the headcount per month
Solved! Go to Solution.
Hi, @yaman123
According to your description, if you have month and year column in date table, you can try like this:
Headcount =
VAR year =
SELECTEDVALUE ( 'Date'[year] )
VAR month =
SELECTEDVALUE ( 'Date'[month] )
VAR date =
DATE ( year, month, 1 )
VAR previousfirstday =
EDATE ( date, -1 )
VAR previouslastday =
EOMONTH ( date, -1 )
RETURN
CALCULATE (
DISTINCTCOUNT ( 'Headcount by Function'[EMP_NO] ),
'Headcount by Function'[VALID_FROM] >= previousfirstday
|| ISBLANK ( 'Headcount by Function'[VALID_TO] ),
'Headcount by Function'[VALID_TO] <= previouslastday
)
If it doesn’t solve your problem, please feel free to ask me.
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @yaman123
According to your description, if you have month and year column in date table, you can try like this:
Headcount =
VAR year =
SELECTEDVALUE ( 'Date'[year] )
VAR month =
SELECTEDVALUE ( 'Date'[month] )
VAR date =
DATE ( year, month, 1 )
VAR previousfirstday =
EDATE ( date, -1 )
VAR previouslastday =
EOMONTH ( date, -1 )
RETURN
CALCULATE (
DISTINCTCOUNT ( 'Headcount by Function'[EMP_NO] ),
'Headcount by Function'[VALID_FROM] >= previousfirstday
|| ISBLANK ( 'Headcount by Function'[VALID_TO] ),
'Headcount by Function'[VALID_TO] <= previouslastday
)
If it doesn’t solve your problem, please feel free to ask me.
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Can you try the following formula.
Previous Month Count = CALCULATE(DISTINCTCOUNT('Headcount by Function'[EMP_NO]),DATESMTD(DATEADD('Date'[Date],-1,MONTH)))
OR
Previous Month Count = CALCULATE(DISTINCTCOUNT('Headcount by Function'[EMP_NO]) PREVIOUSMONTH('Date'[Date]))
This doesnt work unfortunately. It brings back all employees even those who have left. I only need to show employees who were with the business last month
Do you want selecteddate to be the last date (31/01/2021) of previous month?
If this is the case then try the following formula:
User | Count |
---|---|
84 | |
76 | |
74 | |
48 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |