Guest User

Untitled

a guest
Jul 15th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function teto() {
  2. var ss = SpreadsheetApp; //seta a planilha
  3. var planilhaAtiva = ss.getActiveSpreadsheet(); //torna-a ativa
  4. var abaAtiva = planilhaAtiva.getActiveSheet(); //seta a aba ativa
  5.  
  6. for (var i = 2; i < 10; i++) {
  7. var cpf = [i][3];
  8. var valor = [i][11];
  9.  
  10. if (cpf = cpf+1) {
  11. valor = valor + (valor + 1);
  12. abaAtiva.getRange(i,13).setValue(valor);
  13.  
  14. }
  15. }
  16. }
Add Comment
Please, Sign In to add comment