So i have a python script that updates a google sheet with the date and other data corresponding to it. Right now, i just add a row with the data i want inside it
row = [str(dateIn), outcome, numMap, oppAvg]
index = 2
sheet.insert_row(row, index) # this adds a row to the second row, shifts everything down.
When it shows up in the sheet, its just saves it there as a string.
Can i make that specific cell, or even that column to be formatted to a Date? I've already tried setting that column to Date in the sheet, then adding the date. Same thing.
specific cellandformatted to a DateofCan i make that specific cell, or even that column to be formatted to a Date?. Can I ask you about the detail of it? 2. Are you using gspread? From your script, I couldn't understand whether my understanding is correct. - Tanaike