I know you can do this
sheet1.write(3, 3, 'TEXT')
Or you can do a for loop, but I have multiple users working with my file and I don't know what's the number of the current row.
I could create a var CurrentRow
and increase it every time new user joins, but this might happen:
User1 is writing to the file (CurrentRow = 1
)
User2 starts wrirting to the file (CurrentRow = 2
)
So User1's data will be written in row #2.
Is there anything like
sheet1.write('next available line')?