March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
Solved! Go to Solution.
Hi @Aamir_khan ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
var _Column={"Total"}
return
UNION(
DISTINCT('Table'[Country]),_Column)
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:
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
Thanks
Hi @Aamir_khan ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
var _Column={"Total"}
return
UNION(
DISTINCT('Table'[Country]),_Column)
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:
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 @Aamir_khan ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure =
var _select=SELECTCOLUMNS('Table',"1",[Country])
return
SUMX(ALLSELECTED('Table'),[Amount])
2. Result:
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
Any solution on above query
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |