Private Sub CboFilterDate_AfterUpdate()
If [Forms]![Issues Selection and Reporting]![CboFilterDate] = "Today" Then
DoCmd.ApplyFilter , [Forms]![Issues Selection and Reporting]![Issues Selection Subform]![(Year([Opened Date]) = Year(Date) And Month([Due Date]) = Month(Date) And Day([Opened Date]) = Day(Date))]
End If
End Sub
My error reads that it can't frind the "Issues Selection Subform" mentioned in the expression.
Can anyone tell me where I messed up?