so, when I do:
wb = xlwt.Workbook()
ws = wb.add_sheet('Plan0')
ws.write(0, 0, 'Test', style0)
I want to define that cell, in case, (0,0), to have a defined name
Like when we are in Excel, and click in that top left box, named "Name
Box", and define a relative name to a cell or a range of cells.
In my case, to be easy, i just want to define a name to a single cell.
I read the documentation of xlwt, and found that it's not possible
today.
But, could anyone suggest a workaround?
I really need to define this name. The proposit is that another
program read this "variable", in case, the defined name, cause this
application can't read a "A0" cell, only defined names.
Thank's everybody.
> But, could anyone suggest a workaround?
Sorry, I can't think of any workaround other than adding the name
definition using Excel/COM.
> I really need to define this name. The proposit is that another
> program read this "variable", in case, the defined name, cause this
> application can't read a "A0" cell, only defined names.
I trust that you mean A1, not A0. Are you sure it won't accept a cell
range? What application, and what error message(s) do you get if you try
A1 and A1:A1 and Sheet1!A1:A1?
--
You received this message because you are subscribed to the Google Groups "python-excel" group.
To post to this group, send an email to python...@googlegroups.com.
To unsubscribe from this group, send email to python-excel...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/python-excel?hl=en-GB.