Relative Content

Tag Archive for openpyxl

Can’t create cell using openpyxl

from openpyxl import * weekly_schedule = Workbook weekly_schedule_sheet = weekly_schedule.active a = weekly_schedule_sheet[‘A1′] Hello everyone. I am following the instructions at documentation and i get this error. I cannot see what i am doing wrong. a = weekly_schedule_sheet[‘A1’] ~~~~~~~~~~~~~~~~~~~~~^^^^^^ TypeError: ‘property’ object is not subscriptable Thanks for your help. I read through the documentaion and […]