Option to output formulae to JSON
See original GitHub issueI’m using .sheet_to_json
for easier testing (instead of comparing the ws
object with an expected one). The problem is that formula cells don’t show up in the JSON output. Is there a way to make that happen (other than sheet_to_formulae)? If not, an option like formulas: true
for sheet_to_json
would be very useful for test automation.
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Output Excel data as JSON - Office Scripts | Microsoft Learn
Excel table data can be represented as an array of objects in the form of JSON. Each object represents a row in the...
Read more >How to Convert HTML Form Field Values to a JSON Object
preventDefault(); // TODO: Call our function to get the form data. const data = {}; // Demo only: print the form data onscreen...
Read more >JSON.stringify() - JavaScript - MDN Web Docs
The JSON.stringify() method converts a JavaScript value to a JSON string, optionally replacing values if a replacer function is specified or ...
Read more >Using outputs() function and JSON Parse to read data from ...
outputs () function · Take Parse JSON action from Data Operations in a Flow · In that in Inputs, you can use Function...
Read more >How to store a javascript function in JSON - Stack Overflow
In the general case, you can't. · "(And creating my own Lexer-Parser to interupt string function I dont think is an option)" Well,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
For anyone still looking for this, I’m using a function based on @Mithgol algorithm from #270 with some tweaks:
I also met the same problem. Has this problem been solved?