What is the correct Range function in apps Script that will allow my code to run through every row individually?
I created a Google Spreadsheet that revolves around recurring events. The input for the recurring events are coded to populate my Google Calendar. When I run the code it works as it should except it only runs the first row. I know it has something to do with my Range argument. I have even been able to select which row I wanted to run by doing ss.getRange("what ever number row here",2).getValue()
. But I have never been able to run all of the rows and I can not figure out how to do it.