Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
zaza
Resolver III
Resolver III

DAX Sum of Absolute of other Sums without using SUMMARIZE

I'm looking for the sum of the absolute values of sums of categories.


Screen Shot 2020-09-15 at 12.45.58 PM.pngIn my dataset I have 4 categories. The value column is the SUM of the records. A simple ABS functin will return 10 in the total filed. However if you SUM up the absolutes that will return 60 just like in the last column, and this is what I am looking for.

 

 

I managed to find a solution using the SUMMARIZE function, however this is not feasable to implement for several reasons. So the question is, can this be done somehow with CALCULATE or some other functions?

Category Absolute = 
    VAR __table = 
        SUMMARIZE ( 
            'Table',
            'Table'[Category],
            "Absolute", ABS ( SUM ( 'Table'[Value] ) ) 
        )

    RETURN SUMX ( __table, [Absolute] )

 

Here is the file attached for reference, the dataset is very simple 1 table with 3 columns and 11 rows : PowerBI File 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Category Absolute =
SUMX(
    // instead of distinct you can
    // also use values
    DISTINCT( Table[Category] ),
    CALCULATE(
        ABS( SUM( Table[Value] ) )
    )
)

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Category Absolute =
SUMX(
    // instead of distinct you can
    // also use values
    DISTINCT( Table[Category] ),
    CALCULATE(
        ABS( SUM( Table[Value] ) )
    )
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors