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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Aamir_khan
Kudo Collector
Kudo Collector

How to show aggregate value by filtering 2 country and show as total in bar including 2 country

Hi All

 

can we have feature where the graph can be selected. For e.g- when we select Australia and Canada, there's a bar that aggregate the 2 countriesonaly on the graph. And if I add France as well to the filter, the aggregate bar changes to average of 3.

 

How can we do that. I have attached the pbix file "Pbix Sample  ". can you please help me on that.
Screenshot 2023-01-11 220257.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Aamir_khan ,

I created some data:

vyangliumsft_0-1673513404289.png

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
var _Column={"Total"}
return
UNION(
    DISTINCT('Table'[Country]),_Column)

vyangliumsft_1-1673513404289.png

2. Create measure.

Measure =
var _select=SELECTCOLUMNS('Table',"1",[Country])
return
SUMX(ALLSELECTED('Table'),[Amount])
Value =
IF(
    MAX('Table 2'[Country]) ="Total",
    [Measure],
    SUMX(
        FILTER('Table',
        'Table'[Country]=MAX('Table 2'[Country])),[Amount])
    )

3. Result:

vyangliumsft_2-1673513404293.png

 

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

View solution in original post

6 REPLIES 6
Aamir_khan
Kudo Collector
Kudo Collector

Thanks

Anonymous
Not applicable

Hi  @Aamir_khan ,

I created some data:

vyangliumsft_0-1673513404289.png

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
var _Column={"Total"}
return
UNION(
    DISTINCT('Table'[Country]),_Column)

vyangliumsft_1-1673513404289.png

2. Create measure.

Measure =
var _select=SELECTCOLUMNS('Table',"1",[Country])
return
SUMX(ALLSELECTED('Table'),[Amount])
Value =
IF(
    MAX('Table 2'[Country]) ="Total",
    [Measure],
    SUMX(
        FILTER('Table',
        'Table'[Country]=MAX('Table 2'[Country])),[Amount])
    )

3. Result:

vyangliumsft_2-1673513404293.png

 

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

Anonymous
Not applicable

Hi  @Aamir_khan ,

I created some data:

vyangliumsft_0-1673505810516.png

Here are the steps you can follow:

1. Create measure.

Measure =
var _select=SELECTCOLUMNS('Table',"1",[Country])
return
SUMX(ALLSELECTED('Table'),[Amount])

2. Result:

vyangliumsft_1-1673505810523.png

Does it meet your expected results

 

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 Liu Yang

Thanks for helping me but I want separate dynamic bar for the Total based on filtre selection. Means when i select 2 country from filter then dynamic bar bar that aggregate the 2 countriesonaly on the graph
Capture.PNG

Aamir_khan
Kudo Collector
Kudo Collector

Any solution on above query 

Aamir_khan
Kudo Collector
Kudo Collector

Hi All

How can we do that. I have attached the pbix file "Pbix Sample  ". can you please help me on that on above query.

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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