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.
i have single datasheet name called Master . in this sheet have two column name reductionlist and value . i am trying to get total value clusterd column graph . when i use union measure getting error .
i have attached simple sample data sheet for reference
i have expained in pbi file also with expected output screen shot
Sample File
thanks in advance .
Hi, @Anonymous
If you want to add the total column in the chart, you cannot use measure. You need create an entity table/calculated table. But once you do this, the total value of the chart will be static (not affected by filters)
sample:
New Table =
VAR tab1 =
FILTER (
Sheet1,
Sheet1[Reduction buckets]
IN {
" Total Reduction",
"Overstock Consumption",
" xxxxx",
"xxxxx"
}
)
VAR tab2 =
ROW (
"Reduction buckeys", "Total",
"Value", SUMX(tab1,Sheet1[Value] )
)
RETURN
UNION ( tab2, tab1 )
In addition, you try to use 'water fall chart' to replace ‘line and clustered column chart’.
Best Regards,
Community Support Team _ Eason
Hi, @Anonymous
If you want to add the total column in the chart, you cannot use measure. You need create an entity table/calculated table. But once you do this, the total value of the chart will be static (not affected by filters)
sample:
New Table =
VAR tab1 =
FILTER (
Sheet1,
Sheet1[Reduction buckets]
IN {
" Total Reduction",
"Overstock Consumption",
" xxxxx",
"xxxxx"
}
)
VAR tab2 =
ROW (
"Reduction buckeys", "Total",
"Value", SUMX(tab1,Sheet1[Value] )
)
RETURN
UNION ( tab2, tab1 )
In addition, you try to use 'water fall chart' to replace ‘line and clustered column chart’.
Best Regards,
Community Support Team _ Eason
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |