I wrote FILTER formula in excel file by python. But there is formula error when I open that excel file. Code as following,
wb = load_workbook('test.xlsx')
ws = wb['Sheet1']
ws['A2'].value = '=FILTER(A1:H13,H1:H13="N")'
wb.save('test_m.xlsx')
There is no error when running python but there is error(formula) when I open saved 'test_m.xlsx' file. But when I get value by print(ws['A2'].value) and input excel file, it works.
Does anybody know the possible reason?
Thanks in advance..