Hello
I like to filter my form based on data is available in control source of unbound text box.
So in my form I have some fields like:
Id
Date
Title
Start date
Due date
Overdue
For filtering other fields (bound text box) there is no problem. But for overdue field (unbound) I have problem.
Expression of control source overdue text box is: IIf(Int([Due Date])<Int(Date()),"Overdue")
Part of macro expression for search button click is: [TempVars]![strFilter] & " OR ([overdue] Like ""*" & [TempVars]![strSearch] & "*"")"
Now when I click search button I received message “enter parameter value”
Best regards.