04-25-2003 07:50 AM
04-25-2003 08:23 AM
04-28-2003 10:31 AM
04-08-2019 12:33 PM
For anyone (like me) looking to do this programmatically from the Multi Numeric Limit step itself, use the sequence context and invoke AsPropertyObject>>SetFlags. The lookup string should be "Step.Result.Measurement[your_index_here]", and use the flag "PropFlags_IncludeInReport" to keep the measurement in the report or "PropFlags_DontCopyToResults" to exclude the measurement from the report. You can also set the lookup string to "Step.Result.Measurement" to exclude all measurements in that step from the report. Just be aware that, as mentioned above, even if you want no measurements in the report, you still need to publish at least one for TestStand not to throw a runtime error. I'm not defining any tests in the sequence editor itself. I publish them all programmatically, so in the case of no results to report, I just publish a single result with the "LOG" comparison option, but there's nothing in my report because of the PropFlag I set.