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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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