YANKRAY
Technical User
- Nov 7, 2003
- 283
thread767-1415394
CR 10
Is there a way to perform this for multiple requests?
For Example, I want to pull the "CHANG FROM WO" part of the string and also variations of how this could be written like "CHANGE FROM WO" or CHG FROM WO".
I would like to do all the checks in one formula.
Thanks,
Ray
if InstrRev ({table.comment}, "CHG FROM WO") = 0 then
""
else
Mid({table.comment}, InstrRev({table.comment}, "CHG FROM WO"), 24)
CR 10
Is there a way to perform this for multiple requests?
For Example, I want to pull the "CHANG FROM WO" part of the string and also variations of how this could be written like "CHANGE FROM WO" or CHG FROM WO".
I would like to do all the checks in one formula.
Thanks,
Ray
if InstrRev ({table.comment}, "CHG FROM WO") = 0 then
""
else
Mid({table.comment}, InstrRev({table.comment}, "CHG FROM WO"), 24)