Forum Discussion

lauchita's avatar
lauchita
New Member
2 years ago
Solved

Agregating Measures

Hello Comunity! 

 

I'm struggling with some measures related problem. Here is the case: 

 

I've calculated royatly as a % of Revenue (which is a measure itselft). I need to use diferent royalty % to perform the calculation, because I need the ability to pick individually this value per entity. So I've created parameters for every entity:

used it to calculate %:

and then I put them on the matrix:

The problem is that I want to group all entities result into one column, to show a visualization of them and to avoid having just one result per column. 

 

How can I achieve this? 

 

Thank you very much!



 

  • lauchita's avatar
    lauchita
    2 years ago

    Thank you very much Anonymous !

     

    I finally came to a solution: I make measures for all the entities, and the sum them up in only one measure, and use that last one in the visualization

4 Replies

  • You can't measure a measure.  Implement the logic from scratch.

     

    Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue.
    If you are unsure how to do that please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216
    Please show the expected outcome based on the sample data you provided.

    If you want to get answers faster please refer to https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

    • lauchita's avatar
      lauchita
      New Member

      Thank you very much lbendlin  !

       

      I finally came to a solution: I make measures for all the entities, and the sum them up in only one measure, and use that last one in the visualization

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi lauchita ,

     

    Please try this measure.

    Royalty U220=calculate([Revenue] * 'Entity 220'[Entity_220 value],filter(ALL('P&L'),[Company Code]="U220"))

    If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

     

    Best Regards,

    Neeko Tang

    If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

     

    • lauchita's avatar
      lauchita
      New Member

      Thank you very much Anonymous !

       

      I finally came to a solution: I make measures for all the entities, and the sum them up in only one measure, and use that last one in the visualization