Posted 31 January 2019, 6:04 pm EST
I would like to extract all data from a flexsheet that has the fields calculated. I’m trying to create a customize XML spec with all data with calculated fields already calculated. Is there a way to do this?
Example:
My JSON looks like this. It has customize calculation functions AND built in calculate functions.
“1”: “1.00”,
“2”: “01000”,
“3”: “Test”,
“4”: “=MathFunc(18, "30.02", "2", 18, "30.02", "3", "+")”,
“5”: “=MatchFunc(15, "24.00", "30.02")”,
“6”: “=SUM(G5:AD5)”,
I need it to somehow show the results in JSON, String, XML or anything that could be used like this.
“1”: “1.00”,
“2”: “01000”,
“3”: “Test”,
“4”: “10000”,
“5”: “10000”,
“6”: “20000”,
Hope that makes sense. Any help is most appreciated.
