I have a problem with Access 2013.
I am doing a query to get the records that have dates smaller than the date included in a form. But, I'm getting wrong results. I don't know if that is an Access' issue or I'm doing something wrong.
Me.txtResultsForm.RowSource = " SELECT number FROM TBL_Course WHERE TBL_Course.finalDate <= #" & Format(Me.txtFinalDateForm, "dd/mm/yyyy") & "# "
I tried of this way too, but I get the same results:
Me.txtResultsForm.RowSource = " SELECT number FROM TBL_Course WHERE TBL_Course.finalDate <= #" & Me.txtFinalDateForm & "# "
Help!!!!!