Forum Discussion
WHITE655
4 years agoRegular 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 pu...
- 4 years ago
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"
WHITE655
4 years agoRegular Visitor
Thank you so much!!