I need to copy/edit existing sheet of xls file to new file with marking. What i've tried:
import xlrd
from xlutils.copy import copy
workbook = xlrd.open_workbook('template1.xls')
new_wb = copy(workbook)
new_wb.save("test.xls")
But marking is not saved. Existing file is something e.g.:
Result after "copy" is:
Help me please.
The best answer was in comments. I have reached answer limit, so need to set best answer.