cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
saeidrasti
New Member

average and max of grouped sum by two columns

I have a dataset with three columns as follows. i want to first grouped data by two columns day and bucket and sum over values and second calculate average and max of sums over buckets. I would appreciate if you can help me to figure this out by adding a measure to my table to calculate this. 

daybucketvalue
1/1/2023110
1/1/2023120
1/1/202325
1/1/2023215
1/2/2023130
1/2/2023110
1/2/2023225
1/2/202325
   
daybucketvalue
1/1/2023130
1/1/2023220
1/2/2023140
1/2/2023230
   
   
bucketvalue 
135 
225 
   
bucketvalue 
140 
230 
1 ACCEPTED SOLUTION

@saeidrasti ,

Can you try this measures?

1. Average

Average = 
VAR _temp = SUMMARIZE(
    Test_max_avg,
    Test_max_avg[day],
    Test_max_avg[bucket],
    "@Value",SUM(Test_max_avg[value]))
VAR _result = AVERAGEX(_temp,[@Value])
RETURN _result

2. Max

Max = 
VAR _temp = SUMMARIZE(
    Test_max_avg,
    Test_max_avg[day],
    Test_max_avg[bucket],
    "@Value",SUM(Test_max_avg[value]))
VAR _result = MAXX(_temp,[@Value])
RETURN _result

 

Result:

Arul_0-1685457185102.png

Thanks,

Arul

 

 

Regards,
Arul
If I answered your question kindly mark my post as a solution and a kudo would be appreciated.

View solution in original post

4 REPLIES 4
saeidrasti
New Member

Thank you so much Arul, it works. 

saeidrasti
New Member

I want to use bucket in x axis and average and max in y axis of a line chart.

@saeidrasti ,

Can you try this measures?

1. Average

Average = 
VAR _temp = SUMMARIZE(
    Test_max_avg,
    Test_max_avg[day],
    Test_max_avg[bucket],
    "@Value",SUM(Test_max_avg[value]))
VAR _result = AVERAGEX(_temp,[@Value])
RETURN _result

2. Max

Max = 
VAR _temp = SUMMARIZE(
    Test_max_avg,
    Test_max_avg[day],
    Test_max_avg[bucket],
    "@Value",SUM(Test_max_avg[value]))
VAR _result = MAXX(_temp,[@Value])
RETURN _result

 

Result:

Arul_0-1685457185102.png

Thanks,

Arul

 

 

Regards,
Arul
If I answered your question kindly mark my post as a solution and a kudo would be appreciated.
Arul
Super User
Super User

@saeidrasti ,

In which visualization you want to show this and what are the columns that you are going to use in the visualization?

Thanks,

Arul

Regards,
Arul
If I answered your question kindly mark my post as a solution and a kudo would be appreciated.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors