4

我有一个包含多行和多列数据的 Google 表格,并且想在电子表格的每一行中搜索某个短语,然后如果该行包含其中一列中的短语,则在新工作表上打印该行数据(假设 D 列)。

我的包含所有数据的工作表被创造性地称为“所有数据”。同样,我只包含所选数据的工作表称为“所选数据”。假设我正在寻找的短语是“你好”。

目前在“选定数据”表中,我在单元格 A1 中有以下内容:

=QUERY('All the data'!A:D,"select find("hello",All the data!D:D)>0")

这会产生一个解析错误,我希望它打印“所有数据”表中包含“所有数据”表中 D 列中“你好”的所有行。

我究竟做错了什么?我是否使用了正确的功能?还有其他更容易使用的功能吗?什么是正确的公式?

最终,我想将其转换为 Google Apps 脚本。

4

2 回答 2

4

这是您可以尝试的“脚本解决方案”。有很多可能的方法,这是其中之一...

function testfindRow(){ ;// this function only to test the other one by giving it a parameter and using its result.
        var ss = SpreadsheetApp.getActiveSpreadsheet();
        var otherSheet=ss.getSheets()[1];// assuming there is a second sheet to copy to
        var datatocopy=findRow('Hello');
        Logger.log(datatocopy)
        if (datatocopy!=-1){
        otherSheet.getRange(otherSheet.getLastRow()+1,1,1,datatocopy[0].length).setValues(datatocopy);
        }
 }
//
function findRow(item) { ;// the actual search function
        var ss = SpreadsheetApp.getActiveSpreadsheet();
        var sheet=ss.getSheets()[0];
        var values = sheet.getDataRange().getValues();
          for(cc =0; cc < values.length; ++cc) {
            if(values[cc].toString().match(item)==item){break};// here you can eventually use string modifiers like toLowerCase() to allow for wider search criteria
             }
        Logger.log(cc);// the array index in which the result was found, cc+1 is the Row index
        if (cc==values.length){return -1}
         var resultArray=sheet.getRange(cc+1,1,1,values[cc].length).getValues()
         return resultArray ;// the returned value is a 2 dimensions array to use with setValues()
 }

根据您的评论,这是一个返回包含该项目的所有行的版本,我也必须更改错误捕获,但毕竟整个事情都非常简单。

    function testfindRow(){ ;// this function only to test the other one by giving it a parameter and using its result.
            var ss = SpreadsheetApp.getActiveSpreadsheet();
            var otherSheet=ss.getSheets()[1];// assuming there is a second sheet to copy to
            var datatocopy=findRow('Hello');
            if (datatocopy.length>0){
            otherSheet.getRange(otherSheet.getLastRow()+1,1,datatocopy.length,datatocopy[0].length).setValues(datatocopy);
            }
     }
    //
    function findRow(item) { ;// the actual search function
            var ss = SpreadsheetApp.getActiveSpreadsheet();
            var sheet=ss.getSheets()[0];
            var resultArray=new Array();
            var values = sheet.getDataRange().getValues();
              for(cc =0; cc < values.length; ++cc) {
                if(values[cc].toString().match(item)==item){// here you can eventually use string modifiers like toLowerCase() to allow for wider search criteria
// or like this to search only in column D // if(values[cc][3].toString().match(item)==item){
                resultArray.push(values[cc]);
                            };
                 }
            Logger.log(resultArray);// the array of Rows in which the item was found, 
            return resultArray ;// the returned value is a 2 dimensions array to use with setValues()
     }
于 2012-06-19T08:36:55.170 回答
3

电子表格功能解决方案将是:

=QUERY('All the data'!A:D;"select * where D contains 'hello'")

注意:这将在“奥赛罗”中找到“你好”。

于 2012-06-19T08:21:59.527 回答