Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. function onEdit(e){
  2. var a = e.source.getActiveSheet();
  3.  
  4. if( a.getName() == "Movimentos detalhados" ) {
  5. rowValue = a.getActiveCell().getRow();
  6. colValue = a.getActiveCell().getColumn();
  7.  
  8. lValues = a.getRange( rowValue, 1, rowValue, 3).getValues();
  9.  
  10. Browser.msgBox(lValues + " --->" + lValues[0].length);
  11.  
  12. //if(lValues[0].length == 3) {
  13.  
  14. //}
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement