I have a form that I can filter with a button using the code,
This I would like add a filter for, to display data where both [StartTime] and [Progress] are Null. Each code works by themselves, I want to combine them.Code:Private Sub Idle_Click() Me.Filter = "" Me.FilterOn = False Me.Filter = "[StartTime] Is Null" Me.FilterOn = True Me.Caption = "Not Scheduled" End Sub
I have tried a few combinations with little to no success.Code:Me.FilterOn ="[Progress] Is Null"
Jim O