2008 May 19 3:14 PM
how to do programatically filtering
please send code
2008 May 21 10:42 AM
Hi sunil
Filter Condition
In a filter condition, you provide information on which data records are to be displayed:
· The column in which the tested content is located
· The comparison value with which the rows are tested. This can be an individual value or an range for the given value.
· The condition, that is, an operator that defines the necessary relation between the cell value and the comparison value (for example, greater than, less than or equal to)
· Exclusion or inclusion, that is, whether the rows that fit the condition are to be displayed or whether they are not to be displayed
All entries that have the value AA in the CARRID column should be displayed.
*gr_filter->add_filter(
columnname = 'CARRID'
sign = 'I'
option = 'EQ'
low = 'AA' ).*
...
-> With the columname parameter, you determine the column name
-> With the low (or high) parameter, you determine the comparison value
-> With the option parameter, you determine the condition
-> With the sign parameter, you determine whether it is an inclusive or exclusive condition
reward if helpful
regards
Lakshman