In xlswriter, once a format is defined, how can you apply it to a range and not to the whole column or the whole row?
for example:
perc_fmt = workbook.add_format({'num_format': '0.00%','align': 'center'})
worksheet.set_column('B:B', 10.00, perc_fmt)
this gets applied it to the whole "B" column, but how can this "perc_fmt" applied to a range, for example, if I do:
range2 = "B2:C15"
worksheet2.write(range2, perc_fmt)
it says:
TypeError: Unsupported type <class 'xlsxwriter.format.Format'> in write()
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…