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
Itzarthi
Helper I
Helper I

Calculate sum FTE distinct user

Hey Guys!

 

I'm trying to calculate the FTE, but i dont know how to summarize it, because my employees have different contracts. In this example I want to see the summed value of 3,9 in a card in Power BI (Based on the last startdate). How can I realize that? 

unknown.png

 

I tried FTE's = calculate(SUM('Contracten V2'[FTE]), distinctcount('Contracten v2'[EMPLOYEEID])) but this don't work.

unknown.png

 

I hope you guys can help me out!

1 ACCEPTED SOLUTION

@Itzarthi , Try like

SUMX(values( Contracten[EMPLOYEEID]), calculate(max( 'Contracten V2'[FTE])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@Itzarthi , You want like

calculate(SUMX(values('Contracten V2'[FTE]), distinctcount(Contracten[EMPLOYEEID])))

 

or

 

SUMX(values( Contracten[EMPLOYEEID]), calculate(sum( 'Contracten V2'[FTE])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@

Itzarthi_0-1604393648005.png

 

@Itzarthi , Try like

SUMX(values( Contracten[EMPLOYEEID]), calculate(max( 'Contracten V2'[FTE])))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

This is most helpful! I am getting a total sum of all FTE across each line item, is there a way to determine the actual FTE over months in years?

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