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
EashwarBalaji
Resolver I
Resolver I

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

I have to create a custom column "Lift/Escalator" which has the value "Lift" or "Escalator" based on another column, "lift_list".

 

That is If [lift_list] is not null, then Lift/Escalator should have "Lift", otherwise "Escalator"

I tried the following two formulae

1. = Table.AddColumn(#"Renamed Columns", "Lift/Escalator", each IF( ISNOTBLANK([lift_list]) , "Lift" , "Escalator" ))

2. = Table.AddColumn(#"Renamed Columns", "Lift/Escalator", each IF [lift_list] <> null , "Lift" , "Escalator" )

 

I got this error for both:

EashwarBalaji_1-1678280845522.png

 

Can you please help me solving this. Thanks in advance!

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Power Query is case sensitive, use the second version of your code but use if instead of IF

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Power Query is case sensitive, use the second version of your code but use if instead of IF

Thanks. It worked

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.