D
Damon Heron
I have the following code in an option group:
Private Sub optFilters_AfterUpdate()
If optFilters = 2 Then
Me.Filter = "forms!frmOrders!txtCompletedDate= '""'"
Me.FilterOn = True
Else
Me.FilterOn = False
End If
End Sub
The problem is it only gives me a new form (blank record), ignoring the 9
orders that don't have a completeddate in them. Any ideas why? This is a
standard single form, tied to a table, and allows entry of new records....
Private Sub optFilters_AfterUpdate()
If optFilters = 2 Then
Me.Filter = "forms!frmOrders!txtCompletedDate= '""'"
Me.FilterOn = True
Else
Me.FilterOn = False
End If
End Sub
The problem is it only gives me a new form (blank record), ignoring the 9
orders that don't have a completeddate in them. Any ideas why? This is a
standard single form, tied to a table, and allows entry of new records....