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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 15 | |
| 15 | |
| 12 | |
| 9 |