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

165
Views
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 answers
Answer question

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 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!