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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
WHITE655
Regular Visitor

Custom Column

Hi! 

I am trying to create a custom column that pulls from 2 text columns. 

The column needs to be 4 different work types.

 

Issue I am running into is that the Work Order Number needs to just pull text that is contained in the cells "PAT" or "AFE" as each number following them are different. 

 

I wrote this but does not work... any help would be great! 

 

if[ProjectTKFlag] = "Y" and [WorkOrderNumber] = "AFE" then "Project"

else if [ProjectTKFlag] = "Y" and [WorkOrderNumber] = "PAT" then "Work Order Project"

else if [ProjectTKFlag] = "N" and [WorkOrderNumber] = "PAT" then "Work Order Non Project"

else "unknown"

1 ACCEPTED SOLUTION
smpa01
Community Champion
Community Champion

@WHITE655 

 if ([ProjectTKFlag] = "Y" 
     and Text.Contains([WorkOrderNumber], "AFE") = true)         
 then
        "Project"
else 
   if ([ProjectTKFlag] = "Y" 
       and Text.Contains([WorkOrderNumber], "PAT") = true)      
  then
        "Work Order Project"
else 
   if ([ProjectTKFlag] = "N" 
       and Text.Contains([WorkOrderNumber], "PAT") = true)       
  then
        "Work Order Non Project"
else
     "unknown"

========================
Did I answer your question? Mark my post as a solution!
Proud to be a Super User
My Custom Visualization Projects
• Plotting Live Sound: Live Sound
• Beautiful News: Women in Parliament, Energy Mix, Shrinking Armies
• Visual Capitalist: Working Hrs
• Others: Easing Graph, Animated Calendar
MayViz Submissions
• Week 1: View
• Week 2: View
• Week 3: View
• Week 4: View
========================

View solution in original post

3 REPLIES 3
WHITE655
Regular Visitor

Thank you so much!! 

smpa01
Community Champion
Community Champion

@WHITE655 

 if ([ProjectTKFlag] = "Y" 
     and Text.Contains([WorkOrderNumber], "AFE") = true)         
 then
        "Project"
else 
   if ([ProjectTKFlag] = "Y" 
       and Text.Contains([WorkOrderNumber], "PAT") = true)      
  then
        "Work Order Project"
else 
   if ([ProjectTKFlag] = "N" 
       and Text.Contains([WorkOrderNumber], "PAT") = true)       
  then
        "Work Order Non Project"
else
     "unknown"

========================
Did I answer your question? Mark my post as a solution!
Proud to be a Super User
My Custom Visualization Projects
• Plotting Live Sound: Live Sound
• Beautiful News: Women in Parliament, Energy Mix, Shrinking Armies
• Visual Capitalist: Working Hrs
• Others: Easing Graph, Animated Calendar
MayViz Submissions
• Week 1: View
• Week 2: View
• Week 3: View
• Week 4: View
========================

IMO, writing

Text.Contains([WorkOrderNumber], "PAT") = true

is a bit redundant.

It doesn't hurt anything and occasionally this sort of redundancy makes code easier to read but sometimes redundancy is less readable. Personally, I'd drop all of the " = true" in this particular case but don't take that as more than an aesthetic preference.

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

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.