Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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'
Solved! Go to Solution.
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]))
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]))
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.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 46 | |
| 36 | |
| 27 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 56 | |
| 38 | |
| 21 | |
| 21 |