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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
zhblack
Regular Visitor

If and formula

I am trying to identify if an item is an outage. An outage is when day 1 is less than 1 and uasge within last year is greater than 1. 

 

= Table.AddColumn(#"Expanded Usage_MRP_K", "Custom", each IF( And(  value([Day1])<1, value([Usage_MRP_K.Usage Within Last Year])>1 ) ,"Outage", "No Outage"))

 

I get the following error message when I enter the above formula. 

 

Expression.Error: The name 'IF' wasn't recognized.  Make sure it's spelled correctly.

1 ACCEPTED SOLUTION
drewlewis15
Solution Specialist
Solution Specialist

The Query Editor uses a syntax called "M" that differs from the syntax used in Excel.  It is also case sensitive.  The below statement should get what you need based on how you wrote your if statement:

 

if [Day1] < 1 and [Usage_MRP_K.Usage Within Last Year] >1 then "Outage" else "No Outage"

 

If you need additional help, the article below is a good reference:

 

https://www.myonlinetraininghub.com/power-query-if-statements

View solution in original post

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @zhblack

Modify your formula as drewlewis15's suggestion, it turns out to be right.

Table.AddColumn(#"Changed Type", "Custom", each if [Day1] < 1 and [Usage_MRP_K.Usage Within Last Year] >1 then "Outage" else "No Outage")

6.png

 

Best Reagrds

Maggie

drewlewis15
Solution Specialist
Solution Specialist

The Query Editor uses a syntax called "M" that differs from the syntax used in Excel.  It is also case sensitive.  The below statement should get what you need based on how you wrote your if statement:

 

if [Day1] < 1 and [Usage_MRP_K.Usage Within Last Year] >1 then "Outage" else "No Outage"

 

If you need additional help, the article below is a good reference:

 

https://www.myonlinetraininghub.com/power-query-if-statements

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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