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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.