Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
eetigu
New Member

Calculate employee count in a given period

Hi Guys,

 

I need assistance calculating the employee count in a given period of time. In my dataset,  I have the Personel Number, Contract Start Date, Contract End Date, and a termination reason. 

I would like to be able to represent this on a chart. 

 

Thanks

 

 

3 REPLIES 3
eetigu
New Member

Hi @Anonymous , Thanks for your response. I have tried the formula but it does not give the desired result as it is not cummulative. Below is an example table of the dataset. 

EmpIDStartDateEndDateTermination Code
51Monday, February 3, 2020Friday, February 3, 2023 
54Monday, June 10, 2019Thursday, March 31, 2022Termination
53Monday, March 2, 2020Thursday, March 2, 2023 
55Tuesday, October 1, 2019Sunday, July 31, 2022Termination
56Monday, December 9, 2019Sunday, October 31, 2021Termination
57Thursday, June 20, 2019Wednesday, September 30, 2020Termination

 

Thanks 

Anonymous
Not applicable

Anonymous
Not applicable

Hi, I would probably need more info regarding table names and columns etc to fully fix this but I would follow this logic:

Count of Active Employee =
VAR currentDate =
    MAX ( 'Date'[Date] )
RETURN
    CALCULATE (
        COUNTROWS ( Table1 ),
        FILTER (
            Table1,
            ( Table1[Start Date] <= currentDate
                && Table1[End Date] >= currentDate )
                && Table1[Active?] = 1
        )
    )


This is from another thread: https://community.powerbi.com/t5/Desktop/Calculating-a-monthly-employee-count-from-a-start-and-end-d...

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors