4

我有一个谷歌电子表格,我很难计算出选择多行所需的代码。

我要选择的唯一行是在其中一列(比如说 B 列)中具有值或公式的行。

无法按列排序工作表,只能选择前 x 值。

我想我需要遍历工作表中的每一行并确定 B 列是否为空,但我不知道如何执行此操作或如何检查单元格是否包含值或公式。如果它包含一个公式,那么它必须优先于该值保留。

如何使用 Google Apps 脚本仅从 Google 电子表格中选择某一列中的值或公式不为空的行?

4

2 回答 2

4

这应该做你想要的......也许它需要一些调试,因为我没有测试它,因为我不确定你真正想要什么;-)

function copynotempty(){
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sh = SpreadsheetApp.setActiveSheet(ss.getSheets()[0])
  var col = 1 ; // choose the column you want to check: 0 = col A, 1= col B ...
  var range = sh.getDataRange();
  var values=range.getValues();// data is a 2D array, index0 = col A
  var formulas=range.getFormulas();// data is a 2D array, index0 = col A
  var target=new Array();// this is a new array to collect data
   for(n=0;n<range.getHeight();++n){
     if (values[n][col]!=''|| formulas[n][col]!=''){ ; 
        for (cc=0;cc<range.getWidth();++cc){
                if (formulas[n][cc]!=''){target[n][cc]=formulas[n][cc]}else{target[n][cc]=values[n][cc]}
    // if the cell has a formula copy it or else copy the value, do that for the whole row
// (this also defines and apply the 'priority' you mentioned in your question, I wasn't sure if it should apply to the whole row or only on column B)
                }
              }
            }
            if(target.length>0){// if there is something to copy
          var sh2=SpreadsheetApp.setActiveSheet(ss.getSheets()[1]); //second sheet of your spreadsheet
          sh2.getRange(1,1,target.length,target[0].length).setValues();// paste the selected values in the 2cond sheet
          }
        }
于 2012-06-23T12:37:26.353 回答
1

在这些行上尝试一些东西 - 此代码未经测试,但会给你一个公平的想法

var sheet = // get sheet ; 
var data = sheet.getDataRange().getValues(); 
for ( var i = 0; i < data.length ; i++){
  if (data[i][1] != ''){  // Column B is at index 1
    // Do whatever you want
  }
}
于 2012-06-23T11:33:59.043 回答