The code displayed below will guide you to install an JavaScript app to create spreadsheet with spreadsheet sdk. ByteScout Data Extraction Suite is the bundle that includes three SDK tools for data extraction from PDF, scans, images and from spreadsheets: PDF Extractor SDK, Data Extraction SDK, Barcode Reader SDK and you can use it to create spreadsheet with spreadsheet sdk with JavaScript.
The following code snippet for ByteScout Data Extraction Suite works best when you need to quickly create spreadsheet with spreadsheet sdk in your JavaScript application. Follow the instructions from scratch to work and copy the JavaScript code. Check JavaScript sample code samples to see if they respond to your needs and requirements for the project.
You can download free trial version of ByteScout Data Extraction Suite from our website with this and other source code samples for JavaScript.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
var document = WScript.CreateObject('Bytescout.Spreadsheet.Spreadsheet'); // Add new worksheet var worksheet = document.Workbook.Worksheets.Add("HelloWorld"); // get cell value var cell = worksheet.Item(0,0); // you can also use worksheet.Cell("A1") as well // set cell value cell.Value = "Hello, World!"; // delete output file if exists already var fso = WScript.CreateObject('Scripting.FileSystemObject'); if (fso.FileExists('Output.xls')) { fso.DeleteFile('Output.xls'); } fso = null; // save document document.SaveAs ('Output.xls'); // close Spreadsheet document = null
60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page
Explore ByteScout Data Extraction Suite Documentation
Explore Samples
Sign Up for ByteScout Data Extraction Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page
Explore ByteScout Data Extraction Suite Documentation
Explore Samples
Sign Up for ByteScout Data Extraction Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: