Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. 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.