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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply

M code query

Hi,

I'm try to rewrite this excel formula into Power Query, the fields are the same.

=IF(OR((IF(AND([@[First_Repymt_Date]]<[@[Date_Valid]];[@[Date_Valid]]<[@[h_3]];[@[Unpaid_Installment_Count]]>=3);1;0)=1);F2="Y");1;0)

  1. What I've done in Power Query custom column

Capture d’écran 2021-12-16 122115.png

as I'm not familiar with M language I dont know why the formula doesn't shows me the expected value.

        2.   The formula result

Capture d’écran 2021-12-16 124141.png

Any help will be appreciated.

Thanks

1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

Please try this syntax instead, or try wrapping your first if...then...else in parentheses (if ... then ... else ) = 1 then ...

 

= if [a]>[b] and [c]>[d] and [d] > 3 then 1 else if [e] = "Y" then 1 else 0

 

Pat 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

1 REPLY 1
mahoneypat
Microsoft Employee
Microsoft Employee

Please try this syntax instead, or try wrapping your first if...then...else in parentheses (if ... then ... else ) = 1 then ...

 

= if [a]>[b] and [c]>[d] and [d] > 3 then 1 else if [e] = "Y" then 1 else 0

 

Pat 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.