Forum Discussion
Anonymous
4 years agoNot applicable
Custom Column: token literal expected
Hi group, I am creating a new column in Power Query using 2 existing columns: sessions and boucnes. Both are numeric. For new custom column I wrote: if ([sessions]=1 && [bounces]=1,1,0) I am tr...
- 4 years ago
In M (it's not DAX), you'd write that if statement as follows:
if ([sessions] = 1) and ([bounces] = 1) then 1 else 0
AlexisOlson
4 years agoSuper User
In M (it's not DAX), you'd write that if statement as follows:
if ([sessions] = 1) and ([bounces] = 1) then 1 else 0