Hello Everyone,
I made a workflow that creates a wire harness creation list. By inputting the nomenclature of the desire model. The issue that I am facing is that I want it to also output a special text whenever a specific nomenclature is called. EX: By inputting TPWCCMV0400D4-MM, I want to output on the pdf: "Use label 1,2, and 3."
Please help me with this!
Solved! Go to Solution.
Use a formula tool to create a new field called SpecialText. In the Formula use something like
IF [Model Number] = "TPWCCMV0400D4-MM" then
"Use label 1,2, and 3"
else
Null()
endif
Add [SpecialText] as a field in your Report Text Tool. It will either show the special text or a blank line, depending on the model number. If you have several variations of the special text based on model number, consider putting these in a text box and using Find Replace to build up the SpecialText field
Dan
Awesome! Thank you!