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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Super User
Super User

@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: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

3 REPLIES 3
WHITE655
Regular Visitor

Thank you so much!! 

smpa01
Super User
Super User

@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: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors