Google-sheets – Get data from specific date in Google Sheets

google sheets

I’m trying to collect data from specific dates in a Google Sheets. For example, I want to get the data from January only:

sample data

Is this possible?

Best Answer

Use the following formula to do that.

Formula

=FILTER(DATA!A2:D5, MONTH(DATA!A2:A5)=1)

Screenshot

enter image description here

Example

I've created an example file for you: Filter by January