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
leinad13
Frequent Visitor

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
Frequent Visitor

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
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.