The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I am new to Power BI and need your precious help here.
My data is as follows:
My calendar is as follows:
What is the formula for headcount per month please?
I am trying this but it is not functioning..
Thank you so much for your assistance
Ariane
Try
Headcount =
VAR SelectedDate =
MAX ( 'Date'[Date] )
RETURN
CALCULATE (
DISTINCTCOUNT ( Employees[EmployeeID] ),
Employees[DateStart] <= SelectedDate
&& (
ISBLANK ( Employees[DateDeparture] )
|| Employees[DateDeparture] > SelectedDate
)
)
Hello,
I am having this error
Cannot find the table 'Date'.
Thank you for your help
Change 'Date'[Date] to 'Calendar'[Date]
It is still not good 😕
From my excel I have 182 employees in Dec 2022 but the headcount showing 229.
It is still taking employees who left in 2021
Looks like I found the mistake.
The departure date should have been put in all the months of the employees who left. I had included it only in the month they left.
User | Count |
---|---|
28 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |