Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
hi all , i wanna calculate the %Contribution in each year based on Business Type. in each year total %100
but what i have is Y_2021 which is calculated from Measure below , and i use the Percentage of Grand Total in BI , but shown 0% , it is wrong , which formula that i can use to acheive this ?
but when i use visualize "100% Stack Column Chart " in BI , it generates the result i wanted . But it is Column Chart , I want it to be on Line Chart.
Solved! Go to Solution.
Hi @Chanleakna123 ,
You may create measure like DAX below.
%Contribution =
DIVIDE (
CALCULATE (
[Y_2021],
FILTER (
ALLSELECTED ( Table1 ),
Table1[Year] = MAX ( Table1[Year] )
&& Table1[ Business Type] = MAX ( Table1[ Business Type] )
)
),
CALCULATE (
[Y_2021],
FILTER ( ALLSELECTED ( Table1 ), Table1[Year] = MAX ( Table1[Year] ) )
)
)
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi , actually i have acheived this , but the thing is when i continue doing another formula for %contribution , it doesn't work out
Hi @Chanleakna123 ,
You may create measure like DAX below.
%Contribution =
DIVIDE (
CALCULATE (
[Y_2021],
FILTER (
ALLSELECTED ( Table1 ),
Table1[Year] = MAX ( Table1[Year] )
&& Table1[ Business Type] = MAX ( Table1[ Business Type] )
)
),
CALCULATE (
[Y_2021],
FILTER ( ALLSELECTED ( Table1 ), Table1[Year] = MAX ( Table1[Year] ) )
)
)
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
| User | Count |
|---|---|
| 49 | |
| 37 | |
| 33 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 132 | |
| 99 | |
| 56 | |
| 37 | |
| 37 |