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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
lokosrio
Helper II
Helper II

Divide sum by total for items where sum is greater than zero

Hi,

 

I have a data like in the table below:

lokosrio_0-1597846395852.png

 

...




On my chart I want to get data like in the table below:

lokosrio_1-1597846411703.png

 

 

1. I want to show only values where the sum > 0
2. Divide the sum/total to present the result as a contribution


 

Right now I have only DAX which helps me get the elements where the value is bigger than zero:

CALCULATE(SUM('Table'[Measure]),
FILTER(ALL('Table'[Measure]),
SUM('Table'[Measure]) > 0))

 

Could you help me with this, please?

Thank you in advance!

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @lokosrio ,

 

Refer:

sum if>0 =
VAR sum_by_dim2 =
    CALCULATE ( SUM ( 'Table'[Measure] ), ALLEXCEPT ( 'Table', 'Table'[Dim2] ) )
RETURN
    IF ( sum_by_dim2 > 0, sum_by_dim2 )
result =
VAR total =
    CALCULATE (
        SUM ( 'Table'[Measure] ),
        FILTER ( ALL ( 'Table' ), [sum if>0] > 0 )
    )
RETURN
    DIVIDE ( [sum if>0], total )

V-lianl-msft_0-1597911536494.png

 

 

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

View solution in original post

3 REPLIES 3
V-lianl-msft
Community Support
Community Support

Hi @lokosrio ,

 

Refer:

sum if>0 =
VAR sum_by_dim2 =
    CALCULATE ( SUM ( 'Table'[Measure] ), ALLEXCEPT ( 'Table', 'Table'[Dim2] ) )
RETURN
    IF ( sum_by_dim2 > 0, sum_by_dim2 )
result =
VAR total =
    CALCULATE (
        SUM ( 'Table'[Measure] ),
        FILTER ( ALL ( 'Table' ), [sum if>0] > 0 )
    )
RETURN
    DIVIDE ( [sum if>0], total )

V-lianl-msft_0-1597911536494.png

 

 

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

amitchandak
Super User
Super User

@lokosrio , you have try like

divide(sum(Table[measure]),calculate(sum(Table[measure]), all(Table[dim])))

or

divide(sum(Table[measure]),calculate(sum(Table[measure]), allselected(Table[dim])))

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Unfortunately it is not working, because in the calculation I need to filter only values where the sum is greater than 0. In your calculation I am taking all values, which is not the case here

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.