I need help with python XlsxWriter. I need to add link styling for external file link columns. But Xlsxwriter doesn't recognize styling for links(its second column) (text: underline, text-color: blue) if I'm adding the text wrapping for another columns(in this example first column).
Here is my example:
# _*_ coding: utf-8
import xlsxwriter
wb = xlsxwriter.Workbook('/home/mtw/Downloads/my_export.xlsx')
format = wb.add_format()
format.set_text_wrap()
sheet = wb.add_worksheet(name='export_object1')
sheet.write_row('A1', [
u'Its\na bum\nwrap',
'external:resignation_letter.docx',
], format)
wb.close()
So I need to tell the XlsxWriter that he can recognize and text wrapping and styling for links.
Microsoft office: 2007.
xlsxwriter latest version.
Thx.