Hello Friends, Need Help!
I have a form where I filter the data by Combos, all data is filtered except Date/Time (Displaying Error) My filter form is based on Query [Filter], My form is Continuous Form..
I use On Combo After Update :
Private Sub FData_AfterUpdate()
Me.Filter = "[DateOfPurchase] = '" & Me.FData & "'"
Me.FilterOn = True
End Sub
And on Combos Row Source:
SELECT [FILTER].[DateOfPurchase] FROM FILTER;
All other combos are filtering the data perfectly..
What I'm doing wrong, I'm Confused
Thank you in Advanced
I have a form where I filter the data by Combos, all data is filtered except Date/Time (Displaying Error) My filter form is based on Query [Filter], My form is Continuous Form..
I use On Combo After Update :
Private Sub FData_AfterUpdate()
Me.Filter = "[DateOfPurchase] = '" & Me.FData & "'"
Me.FilterOn = True
End Sub
And on Combos Row Source:
SELECT [FILTER].[DateOfPurchase] FROM FILTER;
All other combos are filtering the data perfectly..
What I'm doing wrong, I'm Confused
Thank you in Advanced