This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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"
Solved! Go to Solution.
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"
Thank you so much!!
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"
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.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 4 |