Hello,
I have the following problem:
When I import an excel file , I am merging six fields into one but when I try to add value to the top left field (in order for all fields to have value):
ws.cell(row=8, column=31).value = 'Test'
but this gives me the following error: AttributeError: 'MergedCell' object attribute 'value' is read-only.
When I tested the same code but on different lines (ws.cell(row=70, column=1).value = 'Another test'), where these cells are also merged, it is all working fine.
Has someone encountered the same problem or has any ideas how to cope with the situation?
Kind Regards,
Georgi