Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
I want to assign only the first 7 characters of parameter (string) to another parameter. How can I do that via relations?.
Creo 9
Solved! Go to Solution.
Use the EXTRACT function.
Something like
stringResult = EXTRACT ( stringSource, 1, 7 )
You should look into the syntax for this relation function.
This should work as long as the string being used as a source is at least 7 characters long.
Use the EXTRACT function.
Something like
stringResult = EXTRACT ( stringSource, 1, 7 )
You should look into the syntax for this relation function.
This should work as long as the string being used as a source is at least 7 characters long.