When i wrote a value that does have a percentage sign, excel shows me a green arrow on the top of that cell.
This is what I use to write a value in a specific cell.
worksheet.write(1, 46, '12%')
I tried this :
worksheet.write_string(1, 46, '12%')
and this
worksheet.write_number(1, 46, '12%')
but I get the same results.
How can i get rid of the green arrow?
Thanks!