E
eRDe
Hi All,
I tried to filter the record in my form but it seem it doesn't work as
expected.
I tried to create a concatenate filter and put all criteria in an array but
it seem, it just applying the last condition only.
here is the filter action code
============================
For each rs in array(rs1,rs2,rs3,rs4,rs5)
If rs = "" then
Else
MsgBox rs
DoCmd.ApplyFilter, rs
End If
Next rs
============================
I want to filter the record by rs1 (if its not null) next by rs2
and so on.
But what I get is, the previous filter is removed before the next
filter is applied.How to solve this??
Perhaps somebody out there would like to help.
Regards,
I tried to filter the record in my form but it seem it doesn't work as
expected.
I tried to create a concatenate filter and put all criteria in an array but
it seem, it just applying the last condition only.
here is the filter action code
============================
For each rs in array(rs1,rs2,rs3,rs4,rs5)
If rs = "" then
Else
MsgBox rs
DoCmd.ApplyFilter, rs
End If
Next rs
============================
I want to filter the record by rs1 (if its not null) next by rs2
and so on.
But what I get is, the previous filter is removed before the next
filter is applied.How to solve this??
Perhaps somebody out there would like to help.
Regards,