Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi All,
I'm trying to write a DAX measure like below and getting error.
Any help on this?
Scenario : If SE_COUNT = 1 then I want it to do sum(SE_ACV) otherwise is SE_Count = 0 then sum(PRODUCT_ACV)
Should I use SWITCH function instead of IF?
Regards
Solved! Go to Solution.
Hello @Anonymous ,
The error you're getting is because of misplacing of parenthesis. You must close the parenthesis after stating the column in the MAX function, not after the " = 1" part.
Product_ACV_SE =
IF(
MAX(VW_F_SE_ATTRIBUTION[SE_COUNT]) = 1,
SUM(VW_F_SE_ATTRIBUTION[SE_ACV]),
SUM(VW_F_SE_ATTRIBUTION[PRODUCT_ACV])
)
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudo 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Jorge Pessoa
Hello @Anonymous ,
The error you're getting is because of misplacing of parenthesis. You must close the parenthesis after stating the column in the MAX function, not after the " = 1" part.
Product_ACV_SE =
IF(
MAX(VW_F_SE_ATTRIBUTION[SE_COUNT]) = 1,
SUM(VW_F_SE_ATTRIBUTION[SE_ACV]),
SUM(VW_F_SE_ATTRIBUTION[PRODUCT_ACV])
)
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudo 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Jorge Pessoa
Yes my bad, got the desired result.
Regards
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 60 | |
| 45 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 108 | |
| 108 | |
| 41 | |
| 30 | |
| 27 |