Google Apps Script For Loop vs For Each Loop

Поділитися
Вставка
  • Опубліковано 2 лис 2024

КОМЕНТАРІ • 21

  • @educacionportable
    @educacionportable 2 роки тому

    Thank you for your video you make my mind

    • @saperis
      @saperis  2 роки тому

      My pleasure 😀

  • @muziopiazza4464
    @muziopiazza4464 4 роки тому

    Thanks!! Estava esperando por esse! Gostaria de agradecer muito. Não vejo a hora do próximo. Parabéns pelo ótimo trabalho.

    • @saperis
      @saperis  4 роки тому

      Muito obrigada Muzio!

  • @shrirambalaji2109
    @shrirambalaji2109 3 роки тому +1

    Thank you !!!

    • @saperis
      @saperis  3 роки тому

      You're welcome!

  • @stevepineirov20
    @stevepineirov20 4 роки тому

    Awesome!! Thank you!!

    • @saperis
      @saperis  4 роки тому

      You‘re welcome Steve! Check out my Google Apps Script online course I‘ll soon be launching: courses.saperis.io
      Greetings, Chanel

  • @torialpedro6540
    @torialpedro6540 4 роки тому

    Thank you! Will you have a tutorial on workflow with Google forms using App Script in the future?👍

    • @saperis
      @saperis  4 роки тому +1

      Hi Toria. Maybe. What exactly would you be interested in learning? Greetings, Chanel

    • @torialpedro6540
      @torialpedro6540 4 роки тому

      @@saperis Workflow and automation with Google Forms. A script like formsapproval. I don't know if my company would like to integrate a third-party add-on on our Gsuite, hence, Looking at using App Scripts for this.

  • @leahwilliams5317
    @leahwilliams5317 3 роки тому

    Hi, do you have a tutorial on how to do a dependent dropdown for a whole sheet using App Script?

    • @saperis
      @saperis  3 роки тому

      Hi Leah. No, I don't have such a tutorial video. 😒

  • @rypie_serv6426
    @rypie_serv6426 4 роки тому

    Great Video Saperis. How would I build an Array using your example? In your example you log out just each row. So we each loop you loose the last row. How would I build an Array, row by row to show the complete array of all the rows? So, as it loops it adds the next row to the last one until you have a complete array.
    I have an XML response that I am trying to first load into an array then write in one hit to the sheet. I am currently using .appendRow within my loop which is really, really sloooooooow.

    • @rypie_serv6426
      @rypie_serv6426 4 роки тому

      Its ok Chanel I manged to sort it. I needed to use .push([])

    • @saperis
      @saperis  4 роки тому +1

      Hi there. Yes, with the push method you add a new item to the end of an existing array.

  • @gulshanchand7260
    @gulshanchand7260 4 роки тому

    How to use Conditional Formatting with Google App Script? Please make a video on this topic!

    • @saperis
      @saperis  4 роки тому

      Thank you for the idea. I might actually do so in the future.

    • @gulshanchand7260
      @gulshanchand7260 4 роки тому

      @@saperis I am waiting ...

  • @rodcord
    @rodcord 2 роки тому

    I would say to choose for() if you need to have a condition different of the array lenght.

    • @saperis
      @saperis  2 роки тому +1

      Sure, that's a good choice.