I have an Excel spreadsheet that contains thousands of rows that represent 'sites'
One of the columns is named "Archive" and most of its cells, but not all, contain a relative hyperlink to a folder that's stored on my local machine
For example, a typical cell might have the following text displayed:
0130-0143
and contains an underlying hyperlink that points to:
Sites\London\0130-0143
So when you click the cell an Explorer window opens the archive folder for site number 0130-0143
I wish to import this spreadsheet into a dataframe df = pd.read_excel('Sites.xlsx')
and then export it again (after having updated the site list it with any new sites or changes)
df.to_excel("Updated_Sites.xlsx", index=False)
During the above process the new spreadsheet contains all the display text for the Archive column (0130-0143 and so on) but not the local hyperlinks
Is it even possible to include the local hyperlinks when creating a dataframe?