Hi,
I have a problem that I cannot figure out. I have a query that I am working on. It includes dates mm/dd/yyyy in a column. I want to just show the current year like this:
The query will not produce any results when I run it. I think the reason is because I have a few columns in their that the date field is blank. Before, I was searching with the criteria:
My question is, how do I put in the query, like this?
Thanks,
I have a problem that I cannot figure out. I have a query that I am working on. It includes dates mm/dd/yyyy in a column. I want to just show the current year like this:
Code:
=Year(Now())
Code:
IS NOT NULL
Code:
IS NOT NULL & Year(Now())
Comment