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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
leinad13
Advocate I
Advocate I

IF - Formula in Add Custom Column

I am attempting to add a simple column to show true or false if another column is greater than 2. I have written the formula as :

 

=IF([Spec]>2,true,false))

 

However, the edit window accepts it, but when i press OK - and go back to the query editor it wont accept it and says :

 

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

 

I dont understand, how it can be valid syntax - before clicking OK and then invalid afterwards?

 

 

1 ACCEPTED SOLUTION
itchyeyeballs
Impactful Individual
Impactful Individual

Excel=IF(test, value_if_true, value_if_false)
Power Query=if test then value_if_true else value_if_false

View solution in original post

6 REPLIES 6
leinad13
Advocate I
Advocate I

I think i was being a bit of an eejit and trying to do this in Query editor instead of the data dashboard or whatever it is called.

 

Anyway, all sorted!

Should both work,

 

at a guess doing it in power query may help performance as it will only need to get calculated during import, I'm not sure if doing it within powerpivot will mean its being calculated everytime you refresh your visuals or not.

itchyeyeballs
Impactful Individual
Impactful Individual

Excel=IF(test, value_if_true, value_if_false)
Power Query=if test then value_if_true else value_if_false

This worked for me. I was trying to evaluate if the value is >=500 000 or <500 000.

 

This formula didn’t work from PowerPivot: =IF([DisplayCost]>=500000,">=R500 000","<R500 000")

This Worked: if[DisplayCost]>=500000then">=R500 000"else"<R500 000"

If I wanted to compare a column against a hard coded date, how would I write that formula?

 

if date(2013,4,1)<[Date__c]then 1 else 0

Gives me an error that date isn't recognized.

 

 

2015-12-18_1037.png

Use the datevalue function in DAX to convert the hard coded date string to a date type

https://msdn.microsoft.com/en-us/library/ee634543.aspx

 

If you did this in poswer query the syntax is different 

https://msdn.microsoft.com/en-us/library/mt260703.aspx

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.