Changing values and using List/Series parameter in Relations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Changing values and using List/Series parameter in Relations
Hi,
I'm looking for more information than what's in HELP about using the List/Series parameter.
To be more specific, I would like to know how to use the List/Series parameter in Relations.
- Get an element value from the series. For example, y = X[5].
- Assign a parameter to an element in a series. For example, X[2] = 25.1.
Thnak you
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @YY110032788
The function you need is value(Parameter name, Row Number, Column).
For a list, the value of the column is 1.
y = X[5] ➡️ y=value(X, 5, 1)
X[2] = 25.1 ➡️ value(X, 2, 1) = 25.1
For more information: Relation Functions to Query Parameters
Thnaks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
please open Case at PTC Support.
Martin Hanák
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @YY110032788
The function you need is value(Parameter name, Row Number, Column).
For a list, the value of the column is 1.
y = X[5] ➡️ y=value(X, 5, 1)
X[2] = 25.1 ➡️ value(X, 2, 1) = 25.1
For more information: Relation Functions to Query Parameters
Thnaks
