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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Pulendar1
Frequent Visitor

multiple or and AND with IF conditions in DAX

multiple or and AND with IF conditions in DAX :  Hi Gurus,

 

I am trying to build excel formula in DAX, somehow it is not working.

This is working **

formula 1 = 
IF ( AND ( BF2 = "Y", OR ( BH2 = "", BH2 = "YES" ) ), "YES", "NO" )

Question : 

IF ( AND ( BF2 = "Y", OR ( BH2 = "", BH2 = "YES" ),OR ( BK2 = "", BK2 = "YES" ) ,OR ( BI2 = "", BI2 = "YES" ) ), "YES", "NO" ) 

is not working in Power BI, tried to validate this DAX(sql dax formatter online) formatter not working, but this is fine in Excel. 

Am I missing anything? 

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@Pulendar1 try this DAX expression

 

IF (  Table[Column1] = "Y" &&  ( Table[Column2] = "" || Table[Column2] = "YES" ) , "YES", "NO" )

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos 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.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

2 REPLIES 2
parry2k
Super User
Super User

@Pulendar1 try this DAX expression

 

IF (  Table[Column1] = "Y" &&  ( Table[Column2] = "" || Table[Column2] = "YES" ) , "YES", "NO" )

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos 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.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Hi, Thank you for help!..tried as below..

 

=
IF (
    BF2 = "Y"
        && ( BH2 = ""
        || BH2 = "YES"
        || BK2 = ""
        || BK2 = "YES"
        || BI2 = ""
        || BI2 = "YES" ),
    "YES",
    "NO"
)

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.