I have a spreadsheet with some formula (es. =A1*B2/5).
So I get the Json data and I see that something like that
{
"name": "Sheet1",
"rows": [
{
"index": 31,
"cells": [
{
"value": 5,
"format": "#",
"index": 1
},
{
"value": 10,
"formula": "B32*2",
"index": 2
}
]
}
is it possibile to use the js to get the calulated data or exist a .net dll to convert js"excel" style formula to data?