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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
scarbajo
Frequent Visitor

DAX : TOTAL % ROW OF ONE OF THE ROWS (NOT TOTAL)

Hello!

 

I have a request regarding  a measure that calculates % (Budget) of Total Budget of Account Group "01"

 

Is there any DAX expert around that can help me with this 🙂

 

Thanks

 

ACCOUNT GROUPBUDGET% OF ACCOUNT GROUP "01"
01115.079.546,44100%
0222.682.861,8319,40%
0315.138.325,7612,30%
044.699.545,354,02%
054.093.782,283,50%

 

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@scarbajo

 

hi, try with this:

 

% of AccountGroup1 =
DIVIDE (
    SUM ( Table2[BUDGET] ),
    CALCULATE (
        SUM ( Table2[BUDGET] ),
        FILTER ( ALL ( Table2 ), Table2[ACCOUNT GROUP] = "01" )
    )
)



Lima - Peru

View solution in original post

2 REPLIES 2
Vvelarde
Community Champion
Community Champion

@scarbajo

 

hi, try with this:

 

% of AccountGroup1 =
DIVIDE (
    SUM ( Table2[BUDGET] ),
    CALCULATE (
        SUM ( Table2[BUDGET] ),
        FILTER ( ALL ( Table2 ), Table2[ACCOUNT GROUP] = "01" )
    )
)



Lima - Peru

Thanks @Vvelarde

 

I had to replace SUM(Value) with a mesure but your solution worked! 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.