Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

DAX Calculation Aggregation not working

I'm getting some strange behavior with the below calculation. I'm wondering if anyone has a work around or better function.

 

Measure Calculation: Burn Total = Sum(Funding)  - Sum(Revenue)  = -30,000

Its as though its taking 0 - 30,000 = -30,000 instead of 100,000 - sum(10,000+10,000+10,000) = 70,000

 

Slicer on Level 3 Project Segment:  10ABAA.00.001

Project Table Comments
Project IDLevel 3 Project SegmentMain table - Slicer on Level 3 Project Segment
10ABAA.00.00110ABAA.00.001 
10ABAA.00.001.00010ABAA.00.001 
10ABAA.00.001.00110ABAA.00.001 
10ABAA.00.001.99810ABAA.00.001 
   
Funding Table  
Project IDFunding1:1 Join on Project ID to Project Table
10ABAA.00.001100,000 
   
Revenue Table  
Project IDRevenue1:1 Join on Project ID to Project Table
10ABAA.00.001.00010,000 
10ABAA.00.001.00110,000 
10ABAA.00.001.99810,000 

 

 

  • Anonymous 

    Anytime I have a complex measure that does not behave as I expect, I break it into separate parts.

    Funding Sum = Sum(Funding) 

    Revenue Sum = Sum(Revenue)  

    Burn Total = [Funding Sum]-[Revenue Sum]

    Drop them all into a table and see where the breakage occurs. Fix the individual calculation that isn't working appropriately. Keep in mind that measure themselves do not take up room in the model and only calculated as used. If the measures work individually, build them into one useing VAR.

    Burn Total =

         VAR FundingSum = Sum(Funding) 

         VAR RevenueSum = Sum(Revenue)

    RETURN

         FundingSum - RevenueSum

     

3 Replies

  • kcantor's avatar
    kcantor
    Community Champion

    Anonymous 

    Anytime I have a complex measure that does not behave as I expect, I break it into separate parts.

    Funding Sum = Sum(Funding) 

    Revenue Sum = Sum(Revenue)  

    Burn Total = [Funding Sum]-[Revenue Sum]

    Drop them all into a table and see where the breakage occurs. Fix the individual calculation that isn't working appropriately. Keep in mind that measure themselves do not take up room in the model and only calculated as used. If the measures work individually, build them into one useing VAR.

    Burn Total =

         VAR FundingSum = Sum(Funding) 

         VAR RevenueSum = Sum(Revenue)

    RETURN

         FundingSum - RevenueSum

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      For prosterity. I used your troubleshooting method and realized it was actually an interaction in another slicer that technically shouldnt have had an impact, once that was turned off everything worked. Thanks again!

      • kcantor's avatar
        kcantor
        Community Champion

        Anonymous 

        And that situation is exactly why I still use that troubleshooting method. Rob Collie taught me that whole of any calculation is the sum of its parts and to inspect what I expect.

        Happy your found your issue.