-2

I created an excel file using openpyxl which has some hyperlinks using the following command:

=HYPERLINK("{}", "{}")'.format(link, "Link Name")

But when I use pandas to sort and then save the excel file. the hyperlinks are gone.

what am I doing wrong?

1 Answers1

0

Jimmy

I think this could be useful for you

Cheers

Read Excel file which has one of the column as Hyperlink through python

  • The problem is that I have a list that is appended as a row so I can't target specify cells as in ws.cell(row=2, column=1).hyperlink – jimmy_james Apr 19 '19 at 09:20