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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
johnchill
Helper I
Helper I

Calculate function across relationships

Hello, I have the following model where I can't get the calculate function to work properly.Capture.PNG

 

I am trying to calculate the sum of the Amount column in the ApplyMBI Payments table. My measure is:

total amount = CALCULATE(SUM('ApplyMBI Payments'[Amount]))

 

Any direction is appreciated.

1 ACCEPTED SOLUTION
ibarrau
Super User
Super User

Hello, you won't need a measure to sum a value in visualizations. When you add a "numeric" column to a visualization it has the possibility to sum, average, min, max, etc.

Let's asume you need to create the measure anyway. The calculate is not necessary you can just SUM('ApplyMBI Payments'[Amount]). Calculate is for hard calculation.

 

Regards,


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

View solution in original post

3 REPLIES 3
v-qiuyu-msft
Community Support
Community Support

Hi @johnchill,

 

In my opinion, it seems that you want to sum all of the 'ApplyMBI Payments'[Amount], right?

 

You can consider adding ALL() or ALLSELECTED() function inside of the CALCULATE(). See:

 

total amount = CALCULATE(SUM('ApplyMBI Payments'[Amount]), ALL('ApplyMBI Payments'))

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

You will have to clarify what is not working.

 

While the CALCULATE isn't needed, it shouldn't really hurt you either.

total amount = SUM('ApplyMBI Payments'[Amount])

 

That is totally correct...

 

ibarrau
Super User
Super User

Hello, you won't need a measure to sum a value in visualizations. When you add a "numeric" column to a visualization it has the possibility to sum, average, min, max, etc.

Let's asume you need to create the measure anyway. The calculate is not necessary you can just SUM('ApplyMBI Payments'[Amount]). Calculate is for hard calculation.

 

Regards,


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors