Forum Discussion
alexei7
10 years agoContinued Contributor
Help with SUMIF-like DAX
Hi, I'm trying to create a formula which will calculate the sum of income (from the income table) where a URN in the income table matches a URN in the registrations table In Excel-lingo this ...
alexei7
10 years agoContinued Contributor
I seem to have got this working
I created a lookup column ("RegisteredURN"), using LOOKUPVALUE in the Income table to lookup the URN from a unique version of the URNs from the Registrations table.
Then I created a measure in the Income table:
CALCULATE(sum(Income[Income Amount]),Income[RegisteredURN]<>"")