Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I have a table with a list of 1500 employees and their arrival date in the company and the depature date if they heave leave the company. I need to present a chart with the number of empoyees present for each month, considering that an employee is present for the month if he has arrived or has left the company during the month.
Could you help me ?
Thanks you very much for your help.
Solved! Go to Solution.
hi @Teddy92
1) try to create a calcualed table like:
Dates =
ADDCOLUMNS(
CALENDAR(
MIN(TableName[Arrival date]),
MAX(MAX(TableName[Arrival date]), MAX(TableName[Departure date]))
),
"YY/MM",
FORMAT([Date],"YY/MM")
)
2) plot a visual with the [YY/MM] column and a measure like:
Measure =
VAR _month=FORMAT(MAX(dates[date]), "yymm")
RETURN
COUNTROWS(
FILTER(
TableName,
FORMAT(TableName[Arrival Date], "yymm")<=_month
&&(FORMAT(TableName[Departure Date], "yymm")>=_month || TableName[Departure Date]=BLANK())
)
)it worked like:
Note: The two tables shall be unrelated.
hi @Teddy92
Thanks @FreemanZ ,
I have adapted your code to my context, but I have this error for the measure : "the syntax for RETURN is incorrect".
hi @Teddy92
1) try to create a calcualed table like:
Dates =
ADDCOLUMNS(
CALENDAR(
MIN(TableName[Arrival date]),
MAX(MAX(TableName[Arrival date]), MAX(TableName[Departure date]))
),
"YY/MM",
FORMAT([Date],"YY/MM")
)
2) plot a visual with the [YY/MM] column and a measure like:
Measure =
VAR _month=FORMAT(MAX(dates[date]), "yymm")
RETURN
COUNTROWS(
FILTER(
TableName,
FORMAT(TableName[Arrival Date], "yymm")<=_month
&&(FORMAT(TableName[Departure Date], "yymm")>=_month || TableName[Departure Date]=BLANK())
)
)it worked like:
Note: The two tables shall be unrelated.
Hello @FreemanZ
Thank you very much for this solution. I have understood my mistake.
I am a beginner in powerBi and DAX.
I have just a last problem : the YY/MM are ordered by the number of employees and not by the real time. Where can I change the parameter ?
Thanks for your help.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 14 | |
| 5 | |
| 5 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 10 | |
| 10 | |
| 6 | |
| 6 |