Forum Discussion

synaptical's avatar
synaptical
Helper I
1 year ago
Solved

Problem with assigning / visualizing FTE distributed amounts to months

Dear community   I have a requirement to distribute and visualize the FTE demand over a timeline. The basis is an Excel File which contains only start and end dates, a role, a phase and total hours...
  • lbendlin's avatar
    1 year ago

    Not exactly sure where your issue is but here is how I would show the data

     

     

    fte ass = 
    var d = max('Calendar'[Date])
    var a = filter(SUMMARIZE(Assignments,[Start Date],[End Date],[FTE]),d in CALENDAR([Start Date],[End Date]))
    return sumx(a,[FTE])

     

    Or like this with a modified ribbon chart