We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you use save_data to write a cell starting with "=", it renders the raw text of the formula and does not evaluate the formula's logic.
save_data
>>> from pyexcel_ods import save_data >>> from collections import OrderedDict >>> data = OrderedDict() >>> data.update({"Sheet 1": [ ... ['A', 'B', 'C']] + \ ... [[1, 2, '=A2+B2']] ... }) >>> >>> save_data('test.ods', data)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you use
save_data
to write a cell starting with "=", it renders the raw text of the formula and does not evaluate the formula's logic.The text was updated successfully, but these errors were encountered: