i have a form that archives old records and it prompts the user to enter the dates which to archive. the records are added to a seperate table with an append query. the criteria i use in the query is:
Between [Forms]![frmAuditArchive]![txtBeginningDate] And [Forms]![frmAuditArchive]![txtEndingDate].
the problem is that when a user enters the ending date it does not include entries from that date. i can see that because i use "Between" it is only getting records "between" the dates entered by the user. so, my question is how else can i enter the criteria in order to get the records on and between the dates the user enters?
Between [Forms]![frmAuditArchive]![txtBeginningDate] And [Forms]![frmAuditArchive]![txtEndingDate].
the problem is that when a user enters the ending date it does not include entries from that date. i can see that because i use "Between" it is only getting records "between" the dates entered by the user. so, my question is how else can i enter the criteria in order to get the records on and between the dates the user enters?