10-11-2019 08:34 AM
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.
10-11-2019 09:13 AM
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