I have a report that I filter with a form,; everything works but I want to tweek it. I want to filter a date field on the year instead of the whole date. Could some one tell me what to change in this part of my code to make it work?
Thanks
Dan
Thanks
Dan
Code:
ElseIf TypeOf c Is Access.TextBox Then
strSQL = strSQL & "[" & c.Tag & "] " & " = " & Chr(35) & Format(c, "mm/dd/yyyy") & Chr(35) & " And "
Comment