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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

why averagex works with measure but with the same code it does not?

Why is it that this works:

 

Avg Months Rev:=

AVERAGEX(VALUES('Date'[Month Year]),

[Measure])

 

(the measure is Measure:= calculate (sum(table[column)))

 

 

 

 

 

But this doesnt, even though it is the same code:

 

Avg Months Rev:=

AVERAGEX(VALUES('Date'[Month Year]),

sum(table[column])

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

You may take a look at this blog about how to choose sum, sumx and calculate 

https://p3adaptive.com/2014/10/sum-sumx-or-calculatechoices-choices/ 

What a SUM does is it will SUM the values to give you a total.

What CALCULATE will do is give you the ability to change the filter context of your measure.

Calculate(sum(table[column])) and sum(table[column]) have different filter context in your formula.

You could modify the second formula as below:

Avg Months Rev:=

AVERAGEX(VALUES('Date'[Month Year]),

CALCULATE(sum(table[column]))

 

Best Regards,

Jay

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

You may take a look at this blog about how to choose sum, sumx and calculate 

https://p3adaptive.com/2014/10/sum-sumx-or-calculatechoices-choices/ 

What a SUM does is it will SUM the values to give you a total.

What CALCULATE will do is give you the ability to change the filter context of your measure.

Calculate(sum(table[column])) and sum(table[column]) have different filter context in your formula.

You could modify the second formula as below:

Avg Months Rev:=

AVERAGEX(VALUES('Date'[Month Year]),

CALCULATE(sum(table[column]))

 

Best Regards,

Jay

amitchandak
Super User
Super User

@Anonymous , in  row level function you need to use calculate

Avg Months Rev:=

AVERAGEX(VALUES('Date'[Month Year]),

calculate(sum(table[column])))

 

If you are not using measure with values then need to use calculate

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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