I am doing insert to a google sheet with insertRow :
veri["date"] = date_day + " " + date_month + " " + date_year
ekle = [veri["date"]]
sheet.insert_row(ekle, 3)
date_day
, date_month
and date_year
is string format.
The operation completes successfully, but appends " ' " to the beginning of my date and Excel doesn't understand my date.
Excel understands that my date is string.
It understands the date format when there is no " ' " in Excel.
for example :
veri["date"] = "02 eylül 2021"
sheet.insert_row(veri["date"], 3)
I checking excel output: '02 eylül 2021
This " ' " not seen in cell but appears in the text bar.
(syntax is not important for now. I hope you understand my problem).
Thank you now.
Excel output:
this is like my problem but from java.