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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
smashbroski
Regular Visitor

IF(AND( Function comes back with Expression.Error

Hello Everyone,

 

I'm trying to do an IF (AND( DAX command within PowerBI and when I create a custom column and type the following it comes back with no errors.

 

errorIF_SLMJustification001.PNG

 

But when I apply it, it comes back with a error with IF

errorIF_SLMJustification002.PNG

 

I've tried almost every thinkable command possible and can't seem to figure out why it doesn't like IF, if, else if.

 

 

What I'm trying to do is similar to the excel command of =IF(AND($P8="Service Targets Breached",$K8<$O8),"Yes","")

 

Your wisdom is appreciated!

1 ACCEPTED SOLUTION
smashbroski
Regular Visitor

Hi @affan 

 

That didn't resolve the issue so I did some searching and the following worked for me

 

= Table.AddColumn(#"Removed Duplicates2", "SLM Justification", each if [SLM Status] = "Service Targets Breached" and [Last Resolved Date]<[#"Due Date/Time"] then "Justified" else null)

 

 

Found it kinda funny becuase I think I typed that a million times and it came back with errors.

 

 

Thanks for you help!

View solution in original post

3 REPLIES 3
smashbroski
Regular Visitor

Hi @affan 

 

That didn't resolve the issue so I did some searching and the following worked for me

 

= Table.AddColumn(#"Removed Duplicates2", "SLM Justification", each if [SLM Status] = "Service Targets Breached" and [Last Resolved Date]<[#"Due Date/Time"] then "Justified" else null)

 

 

Found it kinda funny becuase I think I typed that a million times and it came back with errors.

 

 

Thanks for you help!

Greg_Deckler
Super User
Super User

That's because you are entering DAX when you should be using M...you shouldn't do that...



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...
affan
Solution Sage
Solution Sage

Hi @smashbroski 

 

Please try the below DAX

 

IF([SLM Status]="Service Target Breached",
    IF([Last Resolved Date]<[#"Due Date/Time"], "Justified",null),null)

 

If this does not work please share your sample file.

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan Farooqi

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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