Hi All.
I'm trying to create VBA code to filter ListBox via value of TextBox. On online I found sample that is very similar to what I need
Private Sub txtDate_Exit(Cancel As Integer)
Dim sFilter As String, oRS As DAO.Recordset
If IsNull(txtDate) Then DoCmd.ShowAllRecords: Exit Sub...