Hello !
I Have a problem and need your professional advice.
I want to choose the concrete time interval from MS Access Form. For this I have done 2 TextBox: Text1 and Text2, where I need it to make choice between the interval of the entered dates Table or Query (SQL Instruction).
In case of Filter
Me.FilterOn = True
Me.Filter = " datevalue(table1.tarigi) between '" & Me.Text1 & "' and '" & Me.Text2 & "'"
The following record isn’t working properly. Between makes only from the days.
And when I am writing this in the SQL select WHERE or HAVING in this time doesn’t make any choice.