I've got a form with a button that applies a filter to limit the list to records that meet certain criteria, date and status.
This code worked! but now it won't can any one see what I'm doing wrong.
Me.Filter = "[test status]= '" & "not started" & "'" & " AND " & "[planned finish date] < #" & [text30] & "#"
Where [text30] contains a date formatted as dd/mm/yyyy. The first part works filtering on test status = "not started" but the date comparison will not work, i've also tried using Date() and Now() instead of [text30].
Any help would be appreciated
This code worked! but now it won't can any one see what I'm doing wrong.
Me.Filter = "[test status]= '" & "not started" & "'" & " AND " & "[planned finish date] < #" & [text30] & "#"
Where [text30] contains a date formatted as dd/mm/yyyy. The first part works filtering on test status = "not started" but the date comparison will not work, i've also tried using Date() and Now() instead of [text30].
Any help would be appreciated