Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello Team,
I am having difficulty converting this calc from tableau to pbi dax. Any suggestions?
They both come from different tables that are not related. One is an actual table and the other comes from my Measure Table(stored calculations area)
IF Attr([Channel Partner Customer Classification])="DM" AND [Annualized Sales]<500000 then 0
ELSEIF Attr([Channel Partner Customer Classification])="DM" AND[Annualized Sales]<1000000 then 2
ELSEIF Attr([Channel Partner Customer Classification])="DM" AND[Annualized Sales]<2000000 then 3
ELSEIF [Annualized Sales]<100000 then 0
ELSEIF [Annualized Sales]<250000 then 2
ELSEIF [Annualized Sales]>=1500000 then 10
END
Solved! Go to Solution.
a =
SWITCH (
Attr[Channel Partner Customer Classification],
"DM",
SWITCH (
TRUE (),
[Annualized Sales] < 500000, 0,
[Annualized Sales] < 1000000, 2,
[Annualized Sales] < 2000000, 3
),
SWITCH (
TRUE (),
[Annualized Sales] < 100000, 0,
[Annualized Sales] < 250000, 2,
10
)
)
Note you have a logic gap in both halfs.
a =
SWITCH (
Attr[Channel Partner Customer Classification],
"DM",
SWITCH (
TRUE (),
[Annualized Sales] < 500000, 0,
[Annualized Sales] < 1000000, 2,
[Annualized Sales] < 2000000, 3
),
SWITCH (
TRUE (),
[Annualized Sales] < 100000, 0,
[Annualized Sales] < 250000, 2,
10
)
)
Note you have a logic gap in both halfs.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 26 | |
| 22 | |
| 22 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 35 | |
| 29 | |
| 21 | |
| 19 | |
| 17 |