Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

84
Views
Servicio de hoja de cálculo: lectura de datos

Estoy siguiendo este tutorial para leer datos de una hoja de cálculo de Google. Sin embargo, estoy tratando de encontrar alguna documentación sobre ese método, pero no puedo encontrarla. Hay una guía oficial sobre cómo leer desde un solo rango, pero no aborda los detalles de las diferentes hojas. ¿Alguien podría ayudarme a leer datos u ofrecer un código esqueleto?

Esto es lo que tengo hasta ahora:

 function getLatestRotations() { const spreadsheet = SpreadsheetApp.openById("<SPREADSHEET ID>"); const sheet = spreadsheet.getSheetByName("<SHEET NAME>") const columnFriday = sheet; //method to get column id? const columnSunday = sheet; rotations = {}; return rotations; }
about 4 years ago · Santiago Gelvez
1 answers
Answer question

0

Cómo obtener todos los valores en una columna

 function getLatestRotations() { const ss = SpreadsheetApp.openById("<SPREADSHEET ID>"); const sh = ss.getSheetByName("<SHEET NAME>") const column = 1; const vs = sh.getRange(1,column,sh.getLastRow()).getValues(); Logger.log(JSON.stringify(vs)); }
about 4 years ago · Santiago Gelvez Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!