Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 trying to give the new column value=1 when bouth sessions and bounces are 1.
However I am getting this error: token literal expected, does anyone know how I could optimize the formula? Thanks!
Solved! Go to Solution.
In M (it's not DAX), you'd write that if statement as follows:
if ([sessions] = 1) and ([bounces] = 1) then 1 else 0
In M (it's not DAX), you'd write that if statement as follows:
if ([sessions] = 1) and ([bounces] = 1) then 1 else 0
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 7 | |
| 6 |