from openpyxl.workbook import Workbook
wb = Workbook()
wsIndex = wb.create_sheet()
wsIndex.title = 'Index'
ws = wb.create_sheet()
currentCell = ws.cell(row = 1, column = 2)
currentCell.value = 'Index Tab'
currentCell.hyperlink = wsIndex.cell(row = 3, column = 4)
This fails and give the following error:
AttributeError: 'Cell' object has no attribute 'replace'
Thanks for any help.
Cheers, CJ