Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
g-wizard
Frequent Visitor

If/AND/ElseIF

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

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

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.

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

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.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.