Forum Discussion
Jensej
6 years agoHelper V
Total with a join
Hello How can i make a measure with the Total BetragFw only on the fields where Buchungen_KontoNrFIB and Konto_KontoNrFIB is equal?
Pragati11
6 years agoSuper User
Hi Jensej ,
You can create a DAX as follows:
Total = CALCULATE(SUM(bi_Ertrag[BetragFw]), FILTER(ALLSELECTED(bi_Ertrag), bi_Ertrag[Konto_KontoNrFIB] = bi_Ertrag[Buchungen_KontoNrFIB]))
If this helps and resolves the issue, appreciate a Kudos and mark it as a Solution! 🙂
Thanks,
Pragati