NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

Report Previous Result in Subsequent Step

I'm looking for the sequence setting and/or example or expression to report the previous step result. Using a preexpression, I rename the prior step NI_LimitMeasurement (an array) then I want to use another expression or property to write the results to the report. I'm using on-the-fly reporting.

0 Kudos
Message 1 of 2
(1,984 Views)

OK, so happens that this can be done in the Post Expression of the current Step... . If My names are Paramters.Names use expression

 

RunState.Step.Result.Measurement[0].Name=Parameters.Names[0],
RunState.Step.Result.Measurement[1].Name=Parameters.Names[1],
RunState.Step.Result.Measurement[2].Name=Parameters.Names[2]

 

etc

Looking back this is so simple

 

 

0 Kudos
Message 2 of 2
(1,961 Views)