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
Alisea_MI
Resolver II
Resolver II

Column with multiple nested ifs

Hi,

 

I am new to Dax and would appreciate help with writing a formula for a calculated column that returns the result in the column "EWS/Pack" in the table below.

 

Screenshot 2021-04-15 141122.jpg

The conditions are following:

IF [SampleSubTypeIDCode] contains text "Pack" AND [u_axflag] is "Null" or "N", expected outcome "Pack+N" else "Pack + Y",

IF [SampleSubTypeIDCode] contains text "EWS" AND [u_axflag] is "Null" or "N", expected outcome "EWS+N" else "EWS+ Y",

Else [SampleSubTypeIDCode]

 

Thank you so much in advance!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Alisea_MI , You can not have 2 else to in if. So rethink on condition

I attempted like this a new column

 

 

Switch( True() ,
search("Pack",[SampleSubTypeIDCode],,0) >0 && (Isblank([u_axflag]) || [u_axflag] = "N") , "Pack+N" ,
search("Pack",[SampleSubTypeIDCode],,0) >0 , "Pack + Y" ,
search("EWS",[SampleSubTypeIDCode],,0) >0 && (Isblank([u_axflag]) || [u_axflag] = "N") , "EWS+N" ,
search("EWS",[SampleSubTypeIDCode],,0) >0 , "EWS+ Y" ,
[SampleSubTypeIDCode])

View solution in original post

2 REPLIES 2
Alisea_MI
Resolver II
Resolver II

Many thanks, @amitchandak ! Works perfect!

amitchandak
Super User
Super User

@Alisea_MI , You can not have 2 else to in if. So rethink on condition

I attempted like this a new column

 

 

Switch( True() ,
search("Pack",[SampleSubTypeIDCode],,0) >0 && (Isblank([u_axflag]) || [u_axflag] = "N") , "Pack+N" ,
search("Pack",[SampleSubTypeIDCode],,0) >0 , "Pack + Y" ,
search("EWS",[SampleSubTypeIDCode],,0) >0 && (Isblank([u_axflag]) || [u_axflag] = "N") , "EWS+N" ,
search("EWS",[SampleSubTypeIDCode],,0) >0 , "EWS+ Y" ,
[SampleSubTypeIDCode])

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.