如何使用Google表格中的.getRowIndex()循环命令?

时间:2013-10-20 01:08:51

标签: google-apps-script google-contacts

function getColIndexByName(colName) {
  var sheet = SpreadsheetApp.getActiveSheet();
  var numColumns = sheet.getLastColumn();
  var row = sheet.getRange(1, 1, 1, numColumns).getValues();
for (i in row[0]) {
var name = row[0][i];
if (name == colName) {
  return parseInt(i) + 1;
    }
 }
    return -1;
   }

function sendtoContacts () {

 var source = SpreadsheetApp.getActiveSpreadsheet();
 var ss = source.getActiveSheet();
 var row = ss.getActiveRange().getRowIndex();

 var group = ContactsApp.getContactGroup('From Googlesheet');
 var givenName = ss.getRange(row, getColIndexByName("First")).getValue();
 var familyName = ss.getRange(row, getColIndexByName("Last")).getValue();
 var email = ss.getRange(row, getColIndexByName("Work Gmail")).getValue();
 var Homeemail = ss.getRange(row, getColIndexByName("Personal Email")).getValue();
 var company = ss.getRange(row, getColIndexByName("Company")).getValue();
 var title = ss.getRange(row, getColIndexByName("Title")).getValue();
 var phone = ss.getRange(row, getColIndexByName("Phone")).getValue();
 var mobile = ss.getRange(row, getColIndexByName("Mobile")).getValue();
 var newContact =  ContactsApp.createContact(givenName, familyName, email);
 var contactid = newContact.getId();
 var addy = ss.getRange(row, getColIndexByName("Address")).getValue();
 var city = ss.getRange(row, getColIndexByName("City")).getValue();
 var prov = ss.getRange(row, getColIndexByName("Prov")).getValue();
 var pc = ss.getRange(row, getColIndexByName("Postal Code")).getValue();
 var address = addy + ", " + city + ", " + prov + ", " + pc


 var AltContact = ss.getRange(row, getColIndexByName("Alt Contact Name")).getValue();
 var AltRelation = ss.getRange(row, getColIndexByName("Alt ContactRelation")).getValue();
 var AltPhone = ss.getRange(row, getColIndexByName("Alt Contact Phone")).getValue();
 var AltWork = ss.getRange(row, getColIndexByName("Alt Contact Wk No")).getValue();
 var AltMobile = ss.getRange(row, getColIndexByName("Alt Contact Mobile")).getValue();

   newContact.addToGroup(group);
   newContact.addAddress("Home", address);
   newContact.addCompany(company, title);
   newContact.addEmail("Home", Homeemail);
   newContact.addCustomField("Emergency Contact", AltContact);
   newContact.addCustomField("Emergency Contact Relation", AltRelation);
   newContact.addCustomField("Emergency Contact Work", AltWork);
   newContact.addCustomField("Emergency Contact Mobile", AltMobile);

      for ( var i = 0; i < phone.length ; i++){
         if (phone[i][3] != ''){ newContact.addPhone("HOME", phone); return}};   

      for ( var i = 0; i < mobile.length ; i++){
         if (mobile[i][44] != ''){ newContact.addPhone("Mobile", mobile); return}};

        }


  function MakeAllContacts() {
   var source = SpreadsheetApp.getActiveSpreadsheet();
   var ss = source.getActiveSheet();
   var startRow = 2;  // First row of data to process
   var numRows = 100;   // Number of rows to process


   for (row = 2; row < 6; row++)
   {

      sendtoContacts();

       }
    return
      }

这里我使用MakeAllContacts()复制条目,但我想将RowIndex更改为工作表中的每一行,以便添加工作表中的所有联系人。以下是视频我解释它Video,这是我实际工作表Google Sheet的链接。我有一些相似的代码我想开始分享,如果我可以让我的头围绕循环而不是一行是表格中的所有行。感谢任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

您的sendtoContacts ()函数正在使用ss.getActiveRange().getRowIndex();来确定要使用哪一行,但在您的脚本中没有任何一行将您设置为活动状态,因此您必须始终在{@中的主循环中使用相同的数据{1}}。

有两种可能的解决方案:

  • MakeAllContacts()函数循环中使用activate(),以便每次迭代时活动行都会更改(MakeAllContacts()
  • ss.getRange(row,1).activate()函数中使用rowIndex参数,如下所示:

sendtoContacts ()

然后更改函数function MakeAllContacts() { var source = SpreadsheetApp.getActiveSpreadsheet(); var ss = source.getActiveSheet(); var startRow = 2; // First row of data to process var numRows = 100; // Number of rows to process for (row = 2; row < numRows; row++){ sendtoContacts(row); } } 函数,如下所示:

sendtoContacts ()

也就是说,这种方法效率不高,因为每个数据都是使用单个getRange / getValue在电子表格中读取的,这个数据特别慢......请阅读best practice以获取有关如何处理数据的灵感更有效地使用单个function sendtoContacts (row) { // row as parameter var source = SpreadsheetApp.getActiveSpreadsheet(); var ss = source.getActiveSheet(); ... 并迭代数组内容。