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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Shan_Drex12
Helper I
Helper I

IF AND Statement Question

Hi All, 

 

I'm having trouble with this IF AND statement that I had on excel transfering it to power query Check below:

 

=IF(AND(AG5="",J5="FLOAD",F5="OCPD"),M5)

 

Check out Date (AG5) = "blank cell"

 

Stock Status (J5) = "FLOAD"

 

Regular Status (F5) = "OCPD" 

 

SPEND (M5) = "140"

 

I tried using this formula below but I keep getting FALSE in the Power Query column:

 

IF [Trailer Check Out]="" AND [Trailer Stock Status]="FLOAD" AND [Trailer Status]="OCPD" THEN [Detention Spend] ELSE "FALSE"
ENDIF

 

Your help would be greatly appreciated!! 🙂 

 

 

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

That doesn't look like M code with the endif, the syntax should be:

if [Trailer Check Out] = null and [Trailer Stock Status]="FLOAD" and [Trailer Status]="OCPD" then [Detention Spend] else "FALSE"


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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Shan_Drex12
Helper I
Helper I

Thank you! 

Greg_Deckler
Community Champion
Community Champion

That doesn't look like M code with the endif, the syntax should be:

if [Trailer Check Out] = null and [Trailer Stock Status]="FLOAD" and [Trailer Status]="OCPD" then [Detention Spend] else "FALSE"


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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Kudoed Authors