Hello All!
I have this rst3. I have filters and want to apply them 1 by 1.
rst3.filter = filterstr1
if rst3.recordcount = 1 then exit
rst3.recordcount= filterstr2
if rst3.recordcount =1 then exit
suppose there are 4 records after the filterstr1 is applied. The program doesnot apply the next filter(filterstr2) on the filtered 4 records but it applies on the original record itself. how can I achieve this.
Thanks in advance
I have this rst3. I have filters and want to apply them 1 by 1.
rst3.filter = filterstr1
if rst3.recordcount = 1 then exit
rst3.recordcount= filterstr2
if rst3.recordcount =1 then exit
suppose there are 4 records after the filterstr1 is applied. The program doesnot apply the next filter(filterstr2) on the filtered 4 records but it applies on the original record itself. how can I achieve this.
Thanks in advance