Data.Show.Filter
Top  Previous  Next


Same as Data.Show, but with the ability to show rows filtered by a column

Category

Data section

Script section
[Batch], [Undo], [Init], outside Data.Loop..EndLoop statement

Data.Show.Filter Caption, Filter

Caption
Window caption, "[Data] section" if none specified  
 
Filter
Filter  
Format: colX=xxx | colX= | colX<>xxx | colX<>  
 
Labels
Set labels through the DataShowLabels variable, the variable must be set before the Data.Show command.
Format: LabelForColumn1§[LabelForColumn12§][LabelForColumn3§].
Write a zero in the label definition for a column to hide a column.

Example
[Settings_Begin]
BatchSettings.Delimiter=tab
BatchSettings.MarkerCol=3
[Settings_End]

[Batch_Begin]
SET DataShowLabels=Row§0§0§   
Data.Show.Filter Have a look,col2=s   
[Batch_End]

[Data_Begin]
One   s   
Two   s   
Three      
Four      
Five   s   
Six      
[Data_End]