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
BalaKiranM
Helper II
Helper II

DAX Syntax for If Statement

Experts, please help me to convert the below If statement captured from Business Objects report that I need to convert into DAX statement.

 

=If((Match(Lower([Complaint Notes]);"*pass*") Or (Match(Lower([Complaint Notes]);"*dp*")) Or ([Complaint Amount]=75.12)=1) And Match(Lower([Complaint Notes]);"*sdp*")=0;"dp";"")
3 REPLIES 3
amitchandak
Super User
Super User

@BalaKiranM , try a new column like

 


if ( (search("pass", [Complaint Notes],,0)>0 || search("dp", [Complaint Notes],,0)>0 || [Complaint Amount]=75.12)
&& search("sdp", [Complaint Notes],,0) = 0 , "dp", blank())

Getting the below error, pls help.

 

BalaKiranM_0-1658242496593.png

 

Hi @BalaKiranM 

Thanks for reaching out to us.

It works fine in my side, could you share your sample file for us to check? thanks.

vxiaotang_0-1658939174649.png

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors