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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
safina03
New Member

Combine Data in One Column

Hi,
I have one column that I want to combine 6 types of this except one data and also I want to see the Sum of all of them.
I mean like this:
1- Sum
2 Bearbeitet
3-Unbearbeitet =
In Bearbeitung + In Zuarbeit + Unbearbeitet + Zuarbeit erfolgt + Zuarbeit zurückgewiesen + zurückgewiesen

2.png

I try to combine all of thes with using " IF Conditional " , but it is not possible to see the "Sum".

and after that I want to use it like this
1.jpg

1 ACCEPTED SOLUTION
zenisekd
Super User
Super User

3 REPLIES 3
Daniel29195
Super User
Super User

Hello @safina03 

create 3 measures : 
measure 1 = sum(table[column])

 

measure 2 = 

calculate (

sum(tbale[column]) ,

type = "Bearbeitet")

 

measure 3 : 

calculate ( 

sum(table[column]), 

type in {"Bearbeitung", "Zuarbeit ","Zuarbeit erfolg","Zuarbeit zurückgewiesen","zurückgewiesen"}
)

 

 

then add the 3 measures in the visual ..

 

 

let me know if this helps achive what you are looking for. 

 

best regards

lbendlin
Super User
Super User

Repeating the same data in the same chart is a design red flag.

zenisekd
Super User
Super User

@safina03  Please refere to this solution. 
https://community.fabric.microsoft.com/t5/Desktop/Add-total-bar-to-bars-in-clustered-column-chart/m-...

Kudos and mark as solution appreciated 🙂

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors