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
Is it correct that some math functions are not supported yet if they occur in the Excel sheet (for example sinus, cosinus, radians etc.)?
I am getting the following error:
Traceback (most recent call last):
File "C:\ProgramData\Anaconda3\lib\site-packages\koala\Spreadsheet.py", line 982, in cell_evaluate
vv = eval(cell.compiled_expression)
File "", line 1, in
NameError: name 'radians' is not defined
The text was updated successfully, but these errors were encountered:
In case that list hasn't been updated I have done a search through the code to see if they have been implemented. I have found those functions are not yet implemented.
You are welcome to implement them if you like. There is code in this commit which might inspire you as to how; 3de965c
According to this list, there are 476 known and documented excel functions (extracted in that file). Maybe we could write a small code to check how many of those functions we have implemented already.
Is it correct that some math functions are not supported yet if they occur in the Excel sheet (for example sinus, cosinus, radians etc.)?
I am getting the following error:
Traceback (most recent call last):
File "C:\ProgramData\Anaconda3\lib\site-packages\koala\Spreadsheet.py", line 982, in cell_evaluate
vv = eval(cell.compiled_expression)
File "", line 1, in
NameError: name 'radians' is not defined
The text was updated successfully, but these errors were encountered: