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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I'm a new user and I saw that you helped a lot of people
Could you please help me out with my problem?
I have an employee database and I would like to have a my visual report showing FTE per month.
On the database, I have start and end date and FTE per employee.
I have created a Table Date.
My current code is the following:
@Anonymous , try with Max
FTE Actual =
CALCULATE(
sum('FTE database'[FTE]),
FILTER(VALUES('FTE database'[Hire Date]),'FTE database'[Hire Date]<=MAX('Table Dates'[Date])),
FILTER(VALUES('FTE database'[Termination Date]),OR('FTE database'[Termination Date]>=Max('Table Dates'[Date]),ISBLANK('FTE database'[Termination Date])))
)
also refer
Hi @amitchandak
Thanks a lot for your help!!
It's working
I miss just the precision when someone starts or ends during the month, it is rounded to 1, while the FTE should be prorated to the working days per month.
If you have something for this, it would be great, otherwise I'll live with it
In excel the formula I used was quite complex.
Regards
Yen