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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
selected_
Helper IV
Helper IV

How to calculate FTE

I have a column in that contains data on the percentage of how much an employees work, 1 in the column is consinder to be 100% full timer while  there are employees who work less, like 0,2 , 0,994  as you can see below, in the column there are also 1 which is consider to be a fulltimmer employee with 100% . I want to calculate the total number of full-time employees, meaning that, for example, 5 employees each working at 0,2 can collectively represent one 100% full-time equivalent. How can I do this in DAX?

 

I have a column named 'fte' and 'employeeid'."

selected__0-1697470576842.png

 

1 ACCEPTED SOLUTION
rsbin
Super User
Super User

@selected_ ,

Simply create a Measure to SUM your 'FTE' column:

FTEEquivalent = SUM(YourTable[FTE] )

FTE

1
0.2
0.2
0.2
0.2
0.2

rsbin_0-1697479124346.png

I trust this is what you are looking for.

Regards,

View solution in original post

1 REPLY 1
rsbin
Super User
Super User

@selected_ ,

Simply create a Measure to SUM your 'FTE' column:

FTEEquivalent = SUM(YourTable[FTE] )

FTE

1
0.2
0.2
0.2
0.2
0.2

rsbin_0-1697479124346.png

I trust this is what you are looking for.

Regards,

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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