theinviter
Registered User.
- Local time
- Today, 14:28
- Joined
- Aug 14, 2014
- Messages
- 262
Hi
I have a Subfor " Table2" as it have 2 date filter field [ Date_From] and [Date_To].
the subform has Date filed [Date_]. so i want to filter the form between the 2 dates after updates.
how to modify this code to apply it filter date.
I have a Subfor " Table2" as it have 2 date filter field [ Date_From] and [Date_To].
the subform has Date filed [Date_]. so i want to filter the form between the 2 dates after updates.
how to modify this code to apply it filter date.
Code:
Private Sub filterThisForm2()
Dim S1, S2
On Error GoTo errhandler
'n = 1 / 0 ' cause an error
S1 = ""
If Len(Me!Date_From & "") <> 0 Then
S1 = S1 & " and [Date_] Like '" & Me!Date_From & "' "
End If
If Len(S1) > 5 Then
S1 = Mid(S1, 5)
With Me.Form
.Filter = S1
.FilterOn = True
End With
Else
Me.Form.FilterOn = False
End If
Exit Sub
errhandler:
' error handling code
Resume Next
End Sub
Last edited by a moderator: