You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> from xlwings import Workbook, Sheet, Range, Chart
>>> wb = Workbook() # Creates a connection with a new workbook
>>> Range('A1').value = 'Foo 1'
It fails with error code
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Python/2.7/site-packages/xlwings/main.py", line 430, in value
if hasattr(np, 'ndarray') and np.isnan(data):
NotImplementedError: Not implemented for this type
It works if I make it an array:
>>> Range('A1').value = [['Foo 1']]
The text was updated successfully, but these errors were encountered:
I tried the first example in the readme:
It fails with error code
It works if I make it an array:
The text was updated successfully, but these errors were encountered: