Hello,
I have two filter strings which both work.
I want to combine bioth of them, but it then fails. Can someone spot the probelm. Thanks Mark
1st
2nd
combined
I have two filter strings which both work.
I want to combine bioth of them, but it then fails. Can someone spot the probelm. Thanks Mark
1st
Code:
Me.Form.Filter = "Trans_Date Between #" & Me.txt_Filter_Date_Start & "# AND #" & Me.txt_Filter_Date_End & "#"
2nd
Code:
"[Trans_Category_ID_Link] = " & Me.cboFilter_Category
combined
Code:
Me.Form.Filter = Me.Form.Filter = "Trans_Date Between #" & Me.txt_Filter_Date_Start & "# AND #" & Me.txt_Filter_Date_End & "#" And "[Trans_Category_ID_Link] = " & Me.cboFilter_Category