Help

Using Filter option to filter based on year

Solved
Jump to Solution
1460 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Wes_McDermott
4 - Data Explorer
4 - Data Explorer

Hello,

I have a table that has a Date Field. I wanted to use the filter option for a table to filter date records for a specific year such as only show dates that are 2020. With a date field, I don’t have an option to choose a date for a year. Is it possible to use a formula in this Filter section?

1 Solution

Accepted Solutions
kuovonne
18 - Pluto
18 - Pluto

Yes, you can create a formula field, and then filter based on that formula field. (You cannot enter the formula directly in the filter.)
Here is one formula for getting just the year of a date field

YEAR({date})

See Solution in Thread

2 Replies 2
kuovonne
18 - Pluto
18 - Pluto

Yes, you can create a formula field, and then filter based on that formula field. (You cannot enter the formula directly in the filter.)
Here is one formula for getting just the year of a date field

YEAR({date})

Thank you very much! That is exactly what I needed.