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
After implementing #19 it would be great to have something like in examples below but need more research about syntax, it may be different:
const sheet = new Sheet(); sheet.cells['item1.price'] = 100; sheet.cells['item2.price'] = 200; sheet.cells['item3.price'] = 300; // Instead of: sheet.cells['total'] = '=item1.price + item2.price + item3.price'; sheet.cells['total'] = '=sum(item1, item2, item3).price';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After implementing #19 it would be great to have something like in examples below but need more research about syntax, it may be different:
The text was updated successfully, but these errors were encountered: