I'm currently using google app scripts. I have 3 lists that are in columns, when they are edited I need to check the amount in that column. There are three people assigned per column, if one column drops to 1 while the others have 3, then I will redistribute the people among the list.
So, can I 'getLastRow' on a given column? The range class has the getLastRow available, however, the range function itself doesn't seem to return a cell that has a value, for instance
Logger.log(sheet.getRange("B:B").getLastRow());
.
returns '999.0' - while the last row with content is row 6.
Any ideas? Thanks.