Display limited string lenght/text of tekstparameter in another parameter
Jul 17, 2024
07:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jul 17, 2024
07:02 AM
Display limited string lenght/text of tekstparameter in another parameter
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.
Labels:
- Labels:
-
General
ACCEPTED SOLUTION
Accepted Solutions
Jul 17, 2024
07:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jul 17, 2024
07:53 AM
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.
1 REPLY 1
Jul 17, 2024
07:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jul 17, 2024
07:53 AM
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.
