Skip to main content
10-Marble
February 2, 2025
Solved

Changing values ​​and using List/Series parameter in Relations

  • February 2, 2025
  • 2 replies
  • 784 views

Hi,

 

I'm looking for more information than what's in HELP about using the List/Series parameter.

YY110032788_0-1738500094561.png


To be more specific, I would like to know how to use the List/Series parameter in Relations.

  1. Get an element value from the series. For example, y = X[5].
  2. Assign a parameter to an element in a series. For example, X[2] = 25.1.

Thnak you

Best answer by ProFeature

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

2 replies

24-Ruby III
February 3, 2025

Hi,

please open Case at PTC Support.

16-Pearl
February 5, 2025

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