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
Greg5
Frequent Visitor

Create column from another table with sum

Oi.

Tenho uma tabela com informações de pedidos e outra referente aos lançamentos de NFs dos pedidos, gostaria de criar uma coluna na tabela de pedidos com a soma das na tabela de NFs pois existem várias NFs referentes a um pedido.

1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

Hi @Greg5 ,

 

I think your tables should look like as below.

Orders:

RicoZhou_1-1675307465543.png

Invoice:

RicoZhou_0-1675307452784.png

Here are two workarounds to achieve your goal.

1. Create an active relationship between two tables by [Orders] columns.

RicoZhou_2-1675307565283.png

Sum of Invoice = CALCULATE(SUM(Invoice[Invoice]))

Result is as below.

RicoZhou_3-1675307619886.png

2. If you don't want to create a relationship or you want to inactive the relationship between two tables, try this code.

Sum of Invoice = CALCULATE(SUM(Invoice[Invoice]),FILTER(Invoice,Invoice[Orders] = EARLIER(Orders[Orders])))

 

Best Regards,
Rico Zhou

 

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

 

 

View solution in original post

1 REPLY 1
v-rzhou-msft
Community Support
Community Support

Hi @Greg5 ,

 

I think your tables should look like as below.

Orders:

RicoZhou_1-1675307465543.png

Invoice:

RicoZhou_0-1675307452784.png

Here are two workarounds to achieve your goal.

1. Create an active relationship between two tables by [Orders] columns.

RicoZhou_2-1675307565283.png

Sum of Invoice = CALCULATE(SUM(Invoice[Invoice]))

Result is as below.

RicoZhou_3-1675307619886.png

2. If you don't want to create a relationship or you want to inactive the relationship between two tables, try this code.

Sum of Invoice = CALCULATE(SUM(Invoice[Invoice]),FILTER(Invoice,Invoice[Orders] = EARLIER(Orders[Orders])))

 

Best Regards,
Rico Zhou

 

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

 

 

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.