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
When using something similar to what is done in the template called test-formula.xlsx (https://github.com/optilude/xlsx-template/blob/master/test/templates/test-formula.xlsx) it does not calculate the result for all iterated rows, in fact it only does it for the first row, how could this unexpected behavior be solved?
the data sent is as follows: { "data": [ { "name": "John", "quantity": 56, "unitCost": 1000 }, { "name": "Jane", "quantity": 78, "unitCost": 1000 }, { "name": "Joe", "quantity": 100, "unitCost": 1000 }, { "name": "Jill", "quantity": 100, "unitCost": 1000 }, { "name": "Jack", "quantity": 100, "unitCost": 1000 } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using something similar to what is done in the template called test-formula.xlsx (https://github.com/optilude/xlsx-template/blob/master/test/templates/test-formula.xlsx) it does not calculate the result for all iterated rows, in fact it only does it for the first row, how could this unexpected behavior be solved?

the data sent is as follows:
{
"data": [
{
"name": "John",
"quantity": 56,
"unitCost": 1000
},
{
"name": "Jane",
"quantity": 78,
"unitCost": 1000
},
{
"name": "Joe",
"quantity": 100,
"unitCost": 1000
},
{
"name": "Jill",
"quantity": 100,
"unitCost": 1000
},
{
"name": "Jack",
"quantity": 100,
"unitCost": 1000
}
]
}
The text was updated successfully, but these errors were encountered: