In case it is necessary to display the information that fulfills some conditions, one can use FilterExpression property of the DataBand. The condition is to be specified in the Script Editor.

Example of the list that displays employees’ names according to the sex

Report Template:

dataBand.DataSource = Employees;

textBoxName.Value = dataBand["EmployeeName"];

 Property   Report  
 dataBand.FilterExpression = dataBand1["Sex"].ToString() == "f"    
 dataBand.FilterExpression = dataBand1["Sex"].ToString() == "m"    

Add Feedback