Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
12 | |
10 | |
10 | |
10 |
User | Count |
---|---|
17 | |
14 | |
12 | |
11 | |
10 |