Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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!! 🙂
Solved! Go to Solution.
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"
Thank you!
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"