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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
vengadesh_p
Helper I
Helper I

How to Calculate Active Employees based on Rolling Status

Hi All,

I have data like below Table

Screenshot_13.png

 

I want to calculate no of Employee who are "in" Status

Expected OutPut 
A & B was "IN Status" from Mar/2021 and "Out Status from Jun/2021
So for Apr/2021 & May/2021 count is 2 because they already in "IN Status"

Screenshot_14.png

Data

EmployeeMonth Start DateStatus
A1-Jan-2021IN
A1-Feb-2021OUT
A1-Mar-2021IN
A1-Jun-2021OUT
A1-Aug-2021IN
B1-Mar-2021IN
B1-Jun-2021OUT
B1-Aug-2021IN
B1-Sep-2021OUT
B1-Oct-2021IN

 

Thanks,

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@vengadesh_p , Create a date table and join on date with this table. Use date from date table in this visual

 

Try measures like

 

emp = count(Table[Employee])

 

Cumm Hire = CALCULATE([emp], FILTER(ALL('Date') , 'Date'[Date] <= max('Date'[Date])), [Status] ="IN")
Cumm Termination = CALCULATE([emp], FILTER(ALL('Date'), 'Date'[Date] <= Max('Date'[Date])), [Status] = "OUT")
Current Employee = [Cumm Hire] -[Cumm Termination]

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@vengadesh_p , Create a date table and join on date with this table. Use date from date table in this visual

 

Try measures like

 

emp = count(Table[Employee])

 

Cumm Hire = CALCULATE([emp], FILTER(ALL('Date') , 'Date'[Date] <= max('Date'[Date])), [Status] ="IN")
Cumm Termination = CALCULATE([emp], FILTER(ALL('Date'), 'Date'[Date] <= Max('Date'[Date])), [Status] = "OUT")
Current Employee = [Cumm Hire] -[Cumm Termination]

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.