Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello:
Is there any way to trun the current graph that I made:
into this. I want each data label to show + the total
Also, when numbers are really low "stacked column" chart doesnt show some number becuase of the axis. How can I show numbers here. How can I adjust the numbers in axis.
Solved! Go to Solution.
Hi @samnaw ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
var _table1=
DISTINCT('Table'[Group2])
var _table2=
{"Total"}
return
UNION(
_table1,_table2)
2. Create measure
Measure =
IF(
MAX('Table 2'[Group2])="Total",
SUMX(
FILTER(ALL('Table'),'Table'[Group1]=MAX('Table'[Group1])),[Value])
,
SUMX(
FILTER(ALL('Table'),'Table'[Group1]=MAX('Table'[Group1])&&'Table'[Group2]=MAX('Table 2'[Group2])),[Value])
)
3. Result:
If you want to display values with low numbers, you can customize Range's Maximum in Visualizations – Format – Y-axis.
Range that is too large automatically omits values with smaller numbers.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @samnaw ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
var _table1=
DISTINCT('Table'[Group2])
var _table2=
{"Total"}
return
UNION(
_table1,_table2)
2. Create measure
Measure =
IF(
MAX('Table 2'[Group2])="Total",
SUMX(
FILTER(ALL('Table'),'Table'[Group1]=MAX('Table'[Group1])),[Value])
,
SUMX(
FILTER(ALL('Table'),'Table'[Group1]=MAX('Table'[Group1])&&'Table'[Group2]=MAX('Table 2'[Group2])),[Value])
)
3. Result:
If you want to display values with low numbers, you can customize Range's Maximum in Visualizations – Format – Y-axis.
Range that is too large automatically omits values with smaller numbers.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
63 | |
53 | |
39 | |
25 |
User | Count |
---|---|
85 | |
57 | |
45 | |
43 | |
38 |