简体   繁体   English

Google表格过滤器-根据日期将行拖到另一个标签上(例如,2019年8月)

[英]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. 我在“主要”标签上有一个发票清单,每个发票都有特定的创建日期,例如15/09/2019。

I have subsequent tabs 'Sept 2019', 'Aug 2019' and so on. 我接下来有``2019年9月'',``2019年8月''等标签。 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. 目前,我正在使用条件过滤``主要''选项卡,例如文本包含``09/2019''以获取2019年9月创建的所有发票的列表,然后手动将其复制到相应的``2019年9月''选项卡。

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: 是的,您可以在Sept 2019工作表中粘贴此fx:

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

assuming dates are in Column A in Main sheet 假设日期在主表的A列中

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Google Apps脚本中的Utilities.formatDate()输出以前的日期(例如,输入25.05.2015->输出24.05.2015) - Utilities.formatDate() in Google Apps Script outputs previous date (e.g. input 25.05.2015 -> output 24.05.2015) 如何从字符串中获取日期,例如Google表格中的“ 2015年2月5日” - How to get date from string e.g “05th February 2015” in google sheets Ruby 日期减法(例如 90 天前) - Ruby Date Subtraction (e.g. 90 days Ago) 将日期转换为Excel中的数字; 例如Jan-01-> 1/1 - Convert date to number in excel; e.g. Jan-01 -> 1/1 根据另一列获取值的最大日期 - 谷歌表格 - Getting max date of values based on another column - google sheets 如何在 Google 表格中按日期过滤? - How to filter by date in Google Sheets? 将非标准日期格式(例如“5 Sep”)转换为 dd/mm(例如 05/09) - Converting non-standard date format (e.g., "5 Sep") to dd/mm (e.g., 05/09) 根据日期更改工作簿中工作表上选项卡的颜色 - change color of tab on sheets in a workbook based on date Excel文件导入日期是否为日期格式的指数(例如1.74E + 09)? - Excel file import date as exponential (e.g. 1.74E+09) value to date format? Google表格中按单元格引用的日期过滤器 - Date Filter by Cell Reference in Google Sheets
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM