I want to add a Hyperlink to a cell. I'm using the following code:
cell_values = [1,'=HYPERLINK("' + some_url + '","' + some_text + '")',3]
for i, val in enumerate(cell_values):
cell_list[i].value = val
worksheet.update_cells(cell_list)
What is printed into the cell:
'=HYPERLINK("someLink","someText")
The cell should be formatted as a Hyperlink, but the value of the cell is written with a '
in front of it, which destroys the use of the formula.