Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want this onEdit script on google Spreadsheet to start with Row 2, which skips my header row, but I cannot get it to work with my existing code? Can someone out there help a noob out?

function onEdit(e)
{
  var ss = e.source.getActiveSheet();
  var rr  = e.source.getActiveRange();


//comment 2 lines below if you want it working on all sheets, not just on 2nd one
  if(ss.getIndex()!= 1)
    if(ss.getIndex()!= 2) 
      if(ss.getIndex()!= 3) 
  return;
 ///

  var firstRow = rr.getRow();
  var lastRow = rr.getLastRow();

//the last modified date will appear in the 43th column which is the Last Update Column
  for(var r=firstRow; r<=lastRow; r++)
    ss.getRange(r, 43).setValue(new Date());
}
share|improve this question
Hello, Looks like you are on the right track. I wrote a similar program for a google spreadsheet where I want to ignore the header. What error do you run into with your code? -jk – John Jul 6 '12 at 1:11
I'm not getting any errors. This code does what I want EXCEPT that it updates the header row, which is a frozen row. I have tried several different ways to skip the header row by using .offset and other code examples I found butI do not understand the scripting code well enough to get it working. – user1505479 Jul 6 '12 at 15:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.