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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
TomGee
New Member

Tableau Calculated Field to DAX/Power BI Calculated Col

I'm trying to convert a tableau solution to Power BI and am ready to slam my computer against a wall. It seems that everything is harder than it needs to be.

I simply want to produce an "A" or "B" result based on a whole set of and/or conditions. Simple in Tableau or SQL but I can't make it work in Power BI / DAX. Open to any suggestions: 

Here's what it looks like in Tableau - how do I do this in power BI??

IF ( [Employed] = 'F'
and (
([Current Status]) ='A'
OR ([Current Status]) ='B'
OR ([Current Status]) ='C'
OR ([Current Status]) ='D'
OR ([Current Status]) ='E'
))

OR

( [Employed] = 'T'
and (
([Current Status]) ='G'
OR ([Current Status]) ='H'
OR ([Current Status]) ='I'
OR ([Current Status]) ='J'
))

OR (([Current Status] ='E' and [Naics]<>'92'))

then 'BAD' else 'GOOD' END

 

Any help would be GREATLY appreciated!

 

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @TomGee ,

 

I'm assuming you are making a calculated column, try the following code:

 

Column =
SWITCH (
    TRUE (),
    Table[Employed] = 'F'
        && Table[Current Status] IN { 'A', 'B', 'C', 'D', 'E' }, "Bad",
    Table[Employed] = 'T'
        && Table[Current Status] IN { 'G', 'H', 'I', 'J' }, "Bad",
    Table[Current Status] = 'E'
        && Table[Naics] <> '92', "Bad",
    "GOOD"
)

Regards,

MFelix

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @TomGee ,

 

I'm assuming you are making a calculated column, try the following code:

 

Column =
SWITCH (
    TRUE (),
    Table[Employed] = 'F'
        && Table[Current Status] IN { 'A', 'B', 'C', 'D', 'E' }, "Bad",
    Table[Employed] = 'T'
        && Table[Current Status] IN { 'G', 'H', 'I', 'J' }, "Bad",
    Table[Current Status] = 'E'
        && Table[Naics] <> '92', "Bad",
    "GOOD"
)

Regards,

MFelix

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thanks so much!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors