Filter

Hi How can we filter a table on the basis of two or more fields? Like filter=("name=‘A’ and Code=123) Thanx Rajan

Rec.setrange(Name,‘A’); Rec.setrange(Code,‘123’);

Note than filters cannot be OR’ed like this. There is no easy way to filter out records where name=‘A’ OR code=123.

Here’s where the MARK functionality comes in handy [8D]