|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
是这样么?- function 统计30天以内的记录(){
- let arr=new Array();
- with(ThisWorkbook.Sheets.Item("总台账")){
- let n=WorksheetFunction.Match("检定日期",Rows("2:2"),0);
- let r1=Range("a" + Rows.Count).End(xlUp).Row;
- arr=Range("a3").Resize(r1-2,n).Value2;
- }
- with(ThisWorkbook.Sheets.Item("临期汇总")){
- mydate=Range("m2").Value2;
- let newarr=arr.filter(x=>x[15]-mydate<=30);
- if (!newarr==false){
- Range("a4:a" + Rows.Count).EntireRow.ClearContents();
- Range("a4").Resize(newarr.length,newarr[0].length).Value2=newarr;
- }
- }
- }
复制代码 |
评分
-
1
查看全部评分
-
|