RitaMoloney
Registered User.
- Local time
- Today, 13:48
- Joined
- May 6, 2004
- Messages
- 50
Hi,
I have a problem filtering date ranges in a subform. On my main form (called frmStore) I have two unbound date fields called txtStart and txtEnd. The user enters Start Order Date and End Order Date and presses return (the dates are entered dd/mm/yy format). These dates’ ranges are then filtered in the subform (called frmsStore). Sometimes this works correctly and sometimes it doesn’t.
When it doesn’t work and I re-enter the dates in US format e.g. mm/dd/yy, it then works.
I have all my date fields in my database set to UK format (dd-mmm-yyyy) but Access must be converting it back to US format.
In the table tblOrders, the OrderDate field is set to Date/Time and the format is set to dd-mmm-yyyy.
In the form, frmStore, the two unbound date fields txtStart and txtEnd the format is set to Short Date.
On Lost Focus event procedure of txtEnd the following code is attached:
Private Sub txtEnd_LostFocus()
Me.frmsStore.Form.FilterOn = True
Me.frmsStore.Form.Filter = "[OrderDate]>=#" & CDate(txtStart) & "# AND [OrderDate]<=#" & CDate(txtEnd) & "#"
End Sub
Any help would be great.
I have a problem filtering date ranges in a subform. On my main form (called frmStore) I have two unbound date fields called txtStart and txtEnd. The user enters Start Order Date and End Order Date and presses return (the dates are entered dd/mm/yy format). These dates’ ranges are then filtered in the subform (called frmsStore). Sometimes this works correctly and sometimes it doesn’t.
When it doesn’t work and I re-enter the dates in US format e.g. mm/dd/yy, it then works.
I have all my date fields in my database set to UK format (dd-mmm-yyyy) but Access must be converting it back to US format.
In the table tblOrders, the OrderDate field is set to Date/Time and the format is set to dd-mmm-yyyy.
In the form, frmStore, the two unbound date fields txtStart and txtEnd the format is set to Short Date.
On Lost Focus event procedure of txtEnd the following code is attached:
Private Sub txtEnd_LostFocus()
Me.frmsStore.Form.FilterOn = True
Me.frmsStore.Form.Filter = "[OrderDate]>=#" & CDate(txtStart) & "# AND [OrderDate]<=#" & CDate(txtEnd) & "#"
End Sub
Any help would be great.