NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

How to prevent step status from appearing in report

How can I prevent the the rows containing step name (Settings) and Staus (Done) from appearing in the report?   

 

 

Report Snippit.PNG

0 Kudos
Message 1 of 7
(3,719 Views)

You can uncheck the record result checkbox for the desired steps.

Rodéric L
Certified LabVIEW Architect
0 Kudos
Message 2 of 7
(3,709 Views)

Hello.

 

If modifiying the every step to turn off the 'Record Result' checkbox is too much work, you can also modify the ReportOptions within the Result Filtering Expression.   Click on the Expression button (near the pulldown ) by the Result Filtering Expression field and type:  Result.Status != "Done"

 

Good luck,

PH

 

 

 

 

0 Kudos
Message 3 of 7
(3,704 Views)

I want to record the results without the rows containing step name (Settings) and Staus (Done).

 

The report should look like this:

 

Patient Type:       Adult

Breath Rate:        25

EPAP:                10

I-Time:                 1

IPAP:                  25

0 Kudos
Message 4 of 7
(3,698 Views)

For that you need to customize your report. Here are few links to understand the report customization

 

http://www.ni.com/white-paper/8289/en

http://digital.ni.com/public.nsf/allkb/EC64D7C24421A2E58625751D00491809

0 Kudos
Message 5 of 7
(3,675 Views)

Hi xiv015,

 

If you do wish to change the formatting of the report, then you will have to do some report customization.  If you just want to leave out the steps with the Done status and keep the same report formatting then you can use Result Filtering exactly as Teds described above.  In Teststand go to Configure»Report Options and enter the expression Teds described in the expression box.  This will not include the steps with status equal to "Done" in the report.

 

reportoptions.png

Justin D
Applications Engineer
National Instruments
http://www.ni.com/support/
0 Kudos
Message 6 of 7
(3,668 Views)

Is case anyone else is stumbles across this.  This is how I approached the problem of adding multiple settings to the report without the "Done" row between each setting:

 

I feed in a 2D array where the first column has the setting names, and the second column has the setting values.

 

Code Snippit.PNG

 

0 Kudos
Message 7 of 7
(3,665 Views)