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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! 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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.