Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

172
Vistas
How to Iterate the next 10 in a while loop

I am trying to iterate a count of every 10 in a while loop. The code below counts 200 10 times and then stops, the reason it stops is that I need to store the first 10 in a spreadsheet, but that is another problem to solve, right now, I am not sure how to go about moving onto the next 10 counts taken from the first 10 count in the while loop below.

while (go) {
    data = getRecordsByPage(i,200,token,module);
    if (Number(data.info.count) < 200) {
      go = false;
    };
    if (i == 10) {
       go = false;
    
       while(go = false)
       {
         Utilities.sleep(10000)
       }
        if(Utilities.sleep == 10000)
        {
          go = true;
        }

    }
     rows = Number(rows) + Number(data.info.count);
    i++;

  Logger.log(rows)
}

Also, please let me know if having a nested while loop in this is loop a good way to restart the loop again with the timer before it restarts.

about 4 years ago · Santiago Gelvez
1 Respuestas
Responde la pregunta

0

How about using modulo?

replace if (i == 10) { by if (i%10 == 0) {

This way, it will enter in your if statement every multiple of 10

about 4 years ago · Santiago Gelvez Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda