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

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.

Reply
ewelinag17
Frequent Visitor

Create a custom column

Dear
I have a table consisting of the production date and the fault.
How to create a Result column in Power BI?

ewelinag17_0-1598218467650.png

 

If "yes" in the fault column, the result is: "bad".
If in the fault column is "no" and in the date column: " -", the result: "no exhibit".
If there is "no" in the fault column and there is a date in the "date" column, the result is: "micro".
If there is no information in the fault column, the result: "lack of information".


I got a little lost in it 😞
Thank you in advance for your help.

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@ewelinag17 - Use SWITCH(TRUE()...) like this:

 

result =
  SWITCH(TRUE(),
    [fault] = "yes","bad",
    [fault] = "no" && [date of production] = "-","no exhibit",
    [fault] = "no","micro",
    "lack of information"
  )


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@ewelinag17 - Use SWITCH(TRUE()...) like this:

 

result =
  SWITCH(TRUE(),
    [fault] = "yes","bad",
    [fault] = "no" && [date of production] = "-","no exhibit",
    [fault] = "no","micro",
    "lack of information"
  )


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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 Kudoed Authors