Forum Discussion
JimCarr
Mar 16, 2026Copper Contributor
Selecting a specific year using the FILTER function
I am trying to use the filter function to get all the records from a table for a specific year. I have a table that has a date column The filter I am trying to use is =FILTER(Venues14,Venues14[Date...
Olufemi7
Mar 17, 2026Iron Contributor
Hello JimCarr,
=FILTER(Venues14,(Venues14[Date]<>"")*(YEAR(Venues14[Date])=K5),"Is not found")
This formula filters the table to return only rows where the date’s year matches the dropdown in K5 and ignores any blank dates so it works even if some cells are empty
- SergeiBaklanMar 17, 2026Diamond Contributor
If to remove (Venues14[Date]<>"") formula also works assuming we could have blank cells in Date column.