Forum Discussion

jsangerman's avatar
jsangerman
Helper II
5 years ago
Solved

Calculating full-time equivalent (FTE)

I'm having trouble coming up with the formula to calculate a full-time equivalent based on employee timesheet data. A full-time equivalent refers to the time spent on a given project as a fraction (d...
  • lbendlin's avatar
    5 years ago

    Your simple exceptions aren't that simple. In the first case you can use the MIN() function, for example 

     

    hourstocount = MIN(8,hoursworked)

     

    to cap at 8 (ignoring the fact that you are penalizing the worker for doing more work).  For the second scenario use ALL() or ALLSELECTED() or ALLEXCEPT() to modify the filter context inside the computation.

  • Icey's avatar
    Icey
    5 years ago

    Hi jsangerman ,

     

    Try to show values as "Percent of column total". Or create a measure like below.

     

    Measure =
    DIVIDE (
        SUM ( 'Table'[Efforts (hours)] ),
        CALCULATE (
            SUM ( 'Table'[Efforts (hours)] ),
            ALLEXCEPT ( 'Table', 'Table'[Date], 'Table'[User] )
        )
    )
    

     

     

    Best regards

    Icey

     

    If this post helps, then consider Accepting it as the solution to help other members find it faster.