Hi..
I have 3 fields of query [id], [date], and MonthOfDate:month([date]). My Date's record contain complete array of month (so it is month 1 - 12). I try to filter MonthOfDate by criteria like:
>3 it work
>=3 and <=12 it work
but it didn't work perfect when i try to insert those value from a text box control form by this code
<=forms![form1].[txt_end]
if i input 12 on [txt_end] then run query, it display records from month=10 until month = 12
ot if with this codes:
>=forms![form1].[txt_start] and <=forms![form1].[txt_end]
while i insert 1 for my [txt_start] and 12 for my[txt_end], the records display from month=1 until month=9
how to solve that?
thanks in advance