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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
lukkasmendes
New Member

Sum same table, different filters

Good afternoon,
I have a question on how to make a sum of a field "Value" of the same table, with different types and relationship of Ids, this in the same table, I have an example in SQL of what has to be the query, as I ask this question in Power BI?

SELECT
     L.*
FROM
     LANCAMENTO L
     JOIN LANCAMENTO L2 ON L.Id=L2.Id_Origem
WHERE
     L.Vencimento BETWEEN '02/04/2019' AND '02/04/2019'
     AND L.Tipo='PCR'
     AND L2.Tipo='JR'

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

Hi @lukkasmendes 

 

Let me know if you'd like to get below result:

Measure 3 = var a = CALCULATE(MAX(L2[ID]),FILTER(L2,[Tipo]="JR"))
var b  = CALCULATE(MAX(L[ID]),FILTER(L,[Tipo]="PCR"&&[Date]=DATE(2019,2,4)))
Return
IF(a=b,SUMX(FILTER(L,[ID]=b),[Value]))

006.PNG

 

Community Support Team _ Dina Ye
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

2 REPLIES 2
v-diye-msft
Community Support
Community Support

Hi @lukkasmendes 

 

Let me know if you'd like to get below result:

Measure 3 = var a = CALCULATE(MAX(L2[ID]),FILTER(L2,[Tipo]="JR"))
var b  = CALCULATE(MAX(L[ID]),FILTER(L,[Tipo]="PCR"&&[Date]=DATE(2019,2,4)))
Return
IF(a=b,SUMX(FILTER(L,[ID]=b),[Value]))

006.PNG

 

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.
amitchandak
Super User
Super User

Easy Way is to create an alias

Go to Model view. In Model table click on New Table, and add  new table formula

 

LANCAMENTO_l2 =  LANCAMENTO 

Rest is relation and filter as per need.

 

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
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.