简体   繁体   中英

Google Sheets Filter - Pull through rows onto another tab based on date (e.g. Aug 2019)

I have a list of invoices on tab 'Main' where each has a specific date on which they were created eg 15/09/2019.

I have subsequent tabs 'Sept 2019', 'Aug 2019' and so on. At the moment I am filtering the 'Main' tab with the condition eg text contains '09/2019' to get a list of all the invoices created in Sept 2019, and then manually copying them to the corresponding ' Sept 2019' tab.

Is there a filter I can set up on the monthly tabs so they automatically pull through a copy of the entire row if they fulfill the date criteria?

yes, in sheet Sept 2019 you can paste this fx:

=FILTER(Main!A:D, MONTH(Main!A:A)=9, YEAR(Main!A:A)=2019)

assuming dates are in Column A in Main sheet

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM