how can i pull the name of row index in a script. I am using the following, please check and let me know if this is right or there is some other command to pull the value.
Table:
this is the example table where i have assembly names on index rows and process attributes on the columns. I want to pull the name of assembly based on which step in process it is. so i am using the above command.
Index rows below | ProcessTime |
Assembly 1 |
10 |
Assembly 2 | 20 |
Assembly 3 | 5 |
string AssyName= Table("TableName")[token.sequenceNumber][0]--I am using 0 to pull the index column number.