March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi everyone. I'm really hoping for a simple and logical solution please.
I am from the Excel world where this would be an easy SUMIF formula, but I am stumped in DAX. Not sure the best function to apply.
I have two tables but they CANNOT be related in the PBI data model (due to other conflicting relationships).
I think the diagram explains everything......
Solved! Go to Solution.
Jihwan_Kim's solution was a great help, but created a measure. This was no good because I needed to do further calculateions and required a calculated column.
For others that may need help with SUMIF in DAX, this is what worked in the end.....
Calculated Column:
Expense = CALCULATE(
SUM(tblExpenses[Amount]),
FILTER(
tblExpenses,
tblActivities[ActivityId] = CALCULATE(VALUES(tblExpenses[ActivityID]))
)
)
Jihwan_Kim's solution was a great help, but created a measure. This was no good because I needed to do further calculateions and required a calculated column.
For others that may need help with SUMIF in DAX, this is what worked in the end.....
Calculated Column:
Expense = CALCULATE(
SUM(tblExpenses[Amount]),
FILTER(
tblExpenses,
tblActivities[ActivityId] = CALCULATE(VALUES(tblExpenses[ActivityID]))
)
)
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
Expense measure: =
SUMX (
FILTER ( expenses, expenses[activity_id] IN VALUES ( activities[activity_id] ) ),
expenses[amount]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Thanks so much for the suggestion Jhiwan_Kim. And a big thank you for the sample file. You are amazing 🙂
From your file - ultimetly, I want to add Cost_01 + Cost_02 + Expense.
I think this is not possible when we use a Measure. Perhaps there is another solution to get the Expense using a Calculated Column rather than a Measure???
Hi,
I am not 100% sure if I understood your question correctly, but please try something like below. It is writing a measure.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Read about TREATAS. It allows you to carry filters between unrelated tables.
Thanks Ibendlin. So many functions !!!
I have a (sort of) working solution CALCULATE(SUM(FILTER
And Jhiwan_Kim sugested a SUMX(FILTER IN VALUES
I will read about TREATAS and see how that might help.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
13 | |
13 |