I'm struggling to write codes that find me on the first blank line of a google sheet.
I am using the gspread package from github.com/burnash/gspread
I would be glad if someone can help :)
Currently, I just imported modules and opened a worksheet
scope = ['https://spreadsheets.google.com/feeds'] credentials = ServiceAccountCredentials.from_json_keyfile_name('ddddd-61d0b758772b.json', scope) gc = gspread.authorize(credentials) sheet = gc.open("Event Discovery") ws = sheet.worksheet('Event Discovery')
I want to find row 1158, which is the first empty row of a table with a function, which means that every time an old empty row is filled, it will find the next empty row. Look here
source share