NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

Edit step list configurations

In teststand 3 and earlier, when executing a sequence it was shown in a column the result of the step and the high limit and low limit
Now in TS 4 it is possible to edit the step list but i did not manage to show the step result . For example if i create a new column (type expression) and just put Step.Result.numeric, xhen executing the sequence I have a popup because for some steps there is no step.result.numeric available.
 
My question is how to have the same as TS 3 and earlier ( Result + limits in a column when executing a sequence)
 
 
0 Kudos
Message 1 of 3
(3,155 Views)
Try the following expression:

PropertyExists("Step.Result.Numeric")?Step.Result.Numeric:""

This will check if the property exists.  If it does, it will put the numeric value in.  If not, it will put a blank string in.

Allen P.
NI
0 Kudos
Message 2 of 3
(3,142 Views)
Note that the numeric measurement appears as part of the description for the numeric limit test. The default TestStand 4.0 step list configuration has a description column, just like previous versions.
 
I guessing that you probably know this and are purely interested in creating a custom step list configuration, but I wanted to be clear that this functionality has not been removed.
0 Kudos
Message 3 of 3
(3,134 Views)