Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
12 | |
11 | |
8 |
User | Count |
---|---|
24 | |
17 | |
11 | |
11 | |
10 |