Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi everyone, i would like to create a slicer including 2 options sum and average like this so that when i need to see the group by of my data by sum or average. For example in a week the data is 7 with the view sum but with the view average the data will be 1 (7/7 days)
Solved! Go to Solution.
Hi,
I believe you already created the table Aggregation including 2 rows (Sum and Avg)
Now you need to create a new Measure like the below:
Aggregation Measure =
Var selectedAgg = SELECTEDVALUE(AggregationTable[Aggregation])
Return
IF(
selectedAgg = "Sum"
, SUM(Table[Amount])
, AVERAGE(Table[Amount])
)
Hi,
I believe you already created the table Aggregation including 2 rows (Sum and Avg)
Now you need to create a new Measure like the below:
Aggregation Measure =
Var selectedAgg = SELECTEDVALUE(AggregationTable[Aggregation])
Return
IF(
selectedAgg = "Sum"
, SUM(Table[Amount])
, AVERAGE(Table[Amount])
)
@Anonymous , Not very clear, You can create a sum or avg measure and then can create a field parameter or calculation group
Calculation Groups- Measure Slicer, Measure Header Grouping, Measure to dimension conversion. Complex Table display : https://youtu.be/qMNv67P8Go0
User | Count |
---|---|
98 | |
76 | |
74 | |
49 | |
26 |