Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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?
I tried FTE's = calculate(SUM('Contracten V2'[FTE]), distinctcount('Contracten v2'[EMPLOYEEID])) but this don't work.
I hope you guys can help me out!
Solved! Go to Solution.
@Itzarthi , You want like
calculate(SUMX(values('Contracten V2'[FTE]), distinctcount(Contracten[EMPLOYEEID])))
or
SUMX(values( Contracten[EMPLOYEEID]), calculate(sum( 'Contracten V2'[FTE])))
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?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.