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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

Total Combining

Hi everyone,

 

I need to combine two number that needs to be assign one of them. In below picture, I need to bring the total sum to the etkin ticaret which amount would be 100,369.95. Can you help me ?

 

sample.PNG

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may try the following measure.

Measure =
VAR d =
    SELECTEDVALUE ( Table1[DistName] )
RETURN
    IF (
        d = "etkin ticaret",
        CALCULATE ( SUM ( Table1[Value] ), ALLSELECTED ( Table1[DistName] ) ),
        SUM ( Table1[Value] )
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may try the following measure.

Measure =
VAR d =
    SELECTEDVALUE ( Table1[DistName] )
RETURN
    IF (
        d = "etkin ticaret",
        CALCULATE ( SUM ( Table1[Value] ), ALLSELECTED ( Table1[DistName] ) ),
        SUM ( Table1[Value] )
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Dear@v-chuncz-msft ,

 

When  I try to make what you did, dashboard has been as follow;

 

I just want to combine only ekmel gıda (amount is 36,088) , etkin ticaret (64,280) and etkin ticaret amount would be around 100,000. But in following picture, etkin ticaret data has been sum up all dist name, it should have been only sum up ekmel and etkin.

 

Capture.PNG

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors