Forum Discussion

Danny-Happy's avatar
Danny-Happy
Helper I
5 years ago
Solved

summarize Employee result by Project

Hi everyone,

We would to calculate a percentage of revenue by employee.

 

The first problem we had was with table 2, see picture. 
The total was incorrect and we fixed this with HasOneFilter.

But now we are stuck if we want to see the revenue combined per Employee, see picture table 3.

For example; employee name AS:
Revenue Project 1 = 30
Revenue Project 2 = 800
Revenue Project 3 = 500
Totaal revenue = 1330

Total revenue by our calculatie = 12765 (probably because our measure divides the revenue total by 30+80+5 = 115% * 100)
How can we fix this?

 

Thanks a lot!

 

2 Replies

  • Danny-Happy there are many ways to solve it, try this measure:

     

    Total Rev = 
    SUMX ( 
    SUMMARIZE ( 
    Table, 
    Table[Name], 
    Table[Project], 
    "@Revenue", SUM ( Table[Revenue] ) * MAX ( Table[Percentage] )
    ), [@Revenue]
    )

     

    Check my latest blog post Improve UX: Show Year in Legend When Using Time Intelligence Measures | PeryTUS IT Solutions  I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

    • Danny-Happy's avatar
      Danny-Happy
      Helper I

      Thanks for your answer. Is there something I am doing wrong? Becasuse is does not work.
      FYI the first name in table 2 = project name and the second = employee name:

       



       

      BTW: This is my model: