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" |
|
Article ID: 177, Created: September 8, 2010 at 1:36 PM, Modified: October 5, 2010 at 2:11 PM