Forum Discussion
Multiple Additions in CALCULATE(SUM) function
- 5 years ago
Anonymous you can always do this in one measure but I like to break these out, so try following measures:
Measure Base = CALCULATE ( SUM ( Tab_A[Amount] ), Tab_a[CYCLE] = "CURRENT", Tab_a[Month] = 2 ) investment costs = CALCULATE( [Measure Base], tab_a(account) = "TCXPS") + CALCULATE( [Measure Base], tab_a(account) = "YGCDS") + CALCULATE( [Measure Base], tab_a(account) = "INVCC") - CALCULATE( [Measure Base], tab_a(account) = "TAXPC")Check my latest blog post Compare Budgeted Scenarios vs. Actuals I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Anonymous you can always do this in one measure but I like to break these out, so try following measures:
Measure Base =
CALCULATE (
SUM ( Tab_A[Amount] ),
Tab_a[CYCLE] = "CURRENT",
Tab_a[Month] = 2
)
investment costs =
CALCULATE( [Measure Base], tab_a(account) = "TCXPS") +
CALCULATE( [Measure Base], tab_a(account) = "YGCDS") +
CALCULATE( [Measure Base], tab_a(account) = "INVCC") -
CALCULATE( [Measure Base], tab_a(account) = "TAXPC")
Check my latest blog post Compare Budgeted Scenarios vs. Actuals I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Thanks Parry!