Forum Discussion

giorgi_lommidd's avatar
6 years ago
Solved

create measure that do not consider x-axis hierarchy, while measure components do consider.

In shared document you will see measure "Final Balance", in Table "DateHelper". This measure is categorised by OperationsStatus (which itself is hierarcy level on x-axes), becouse components of "Final Balance" is categorised by OperationsStatus. 
I need to calculate "Final Balance" in such way that it does not care aboute OperationStatus. In other words,  I need to calculate sum of measures, that the sum do not consider x-axis hierarcy level("OperationsStatus"), while components of the sum do. 
Here is the link: https://drive.google.com/file/d/1aJFnisiBNVrPQdX1a1VXxqNPufMO1xp4/view?usp=sharing 
  

  • Hi giorgi_lommidd 

     

    You can try something like.

    Measure = 
    CALCULATE( 
        [Your Measure or Aggregation],
        ALL( 'Table'[OperationsStatus] ) 
    )

    ps. I've tried to access your GD file but permissions are not set.

     

    Best Regards,
    Mariusz

    If this post helps, then please consider Accepting it as the solution.

    Please feel free to connect with me.
    Mariusz Repczynski

     

2 Replies

  • Mariusz's avatar
    Mariusz
    Icon for Community Champion rankCommunity Champion

    Hi giorgi_lommidd 

     

    You can try something like.

    Measure = 
    CALCULATE( 
        [Your Measure or Aggregation],
        ALL( 'Table'[OperationsStatus] ) 
    )

    ps. I've tried to access your GD file but permissions are not set.

     

    Best Regards,
    Mariusz

    If this post helps, then please consider Accepting it as the solution.

    Please feel free to connect with me.
    Mariusz Repczynski