The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
78 | |
73 | |
38 | |
30 | |
28 |
User | Count |
---|---|
107 | |
100 | |
55 | |
49 | |
45 |