Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

DAX Measure

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?

 

Himanshu_1306_0-1711117117203.png

 

Regards

1 ACCEPTED SOLUTION
jpessoa8
Continued Contributor
Continued Contributor

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

View solution in original post

2 REPLIES 2
jpessoa8
Continued Contributor
Continued Contributor

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

Anonymous
Not applicable

Yes my bad, got the desired result.

Regards

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.