Hi guys am trying to Filter all records that have been archived in a form. I know i can just build the form on a query excluding them but i want to be able to see and not see them. So i wrote this code -
Private Sub Check259_AfterUpdate()
Select Case Me!Check259.Value
Case True
Me.Filter = "[Archive Dates] = ** '" & NotIsNull & "'" **
Me.FilterOn = True
Case Else
Me.FilterOn = False
End Select
End Sub
What i want to be able to say where i have starred it is "where [Archive Dates] is has a date exclude it . But don't know how to any ideas? ed
Private Sub Check259_AfterUpdate()
Select Case Me!Check259.Value
Case True
Me.Filter = "[Archive Dates] = ** '" & NotIsNull & "'" **
Me.FilterOn = True
Case Else
Me.FilterOn = False
End Select
End Sub
What i want to be able to say where i have starred it is "where [Archive Dates] is has a date exclude it . But don't know how to any ideas? ed