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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Himanshu_1306
Resolver I
Resolver I

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
Super User
Super User

Hello @Himanshu_1306 ,

 

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
Super User
Super User

Hello @Himanshu_1306 ,

 

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.