07-16-2024 01:12 PM
I would like to set some tests to record only (not for score) depending on the part number being tested. Is Result Recording Option the way to go about doing this? I am attempting to set it in the Expression field to something like the below. How can I get this to work?
Step.ResultRecordingOption = Disabled
Solved! Go to Solution.
07-16-2024 02:22 PM - edited 07-16-2024 02:23 PM
Something similar to this.
RunState.Root.Locals.UUT.PartNumber == "11111" ? Step.ResultRecordingOption = ResultRecordingOption_Disabled : ""
07-16-2024 02:48 PM - edited 07-16-2024 02:54 PM
<Redacted>
That works! Thanks!