Forum Discussion
PPStar
3 years agoHelper V
IF AND Custom column
I am trying to create a new column based on the below
IF([ColumnA]=false and [ColumnB]>20 and [ColumnC] = true then "true" else "false")
But i keep gettting a syntax error "Token Comma expected.
What am i doing wrong?
PPStar , Try like
in dax
IF([ColumnA]=false() && [ColumnB]>20 && [ColumnC] , true(), false() )
power query
IF [ColumnA]="false" and [ColumnB]>20 and [ColumnC] = true then "true" else "false"
1 Reply
- amitchandakSuper User
PPStar , Try like
in dax
IF([ColumnA]=false() && [ColumnB]>20 && [ColumnC] , true(), false() )
power query
IF [ColumnA]="false" and [ColumnB]>20 and [ColumnC] = true then "true" else "false"