ByteScout Spreadsheet SDK - VBScript - Convert CSV to XLS - ByteScout

ByteScout Spreadsheet SDK – VBScript – Convert CSV to XLS

  • Home
  • /
  • Articles
  • /
  • ByteScout Spreadsheet SDK – VBScript – Convert CSV to XLS

How to convert CSV to XLS in VBScript and ByteScout Spreadsheet SDK

Write code in VBScript to convert CSV to XLS with this step-by-step tutorial

The sample source codes on this page shows how to convert CSV to XLS in VBScript. ByteScout Spreadsheet SDK is the SDK that can write and read, modify and calculate Excel and CSV spreadsheets. Most popular formulas are supported. You may import or export data to and from CSV, XML, JSON as well as to and from databases, arrays. It can convert CSV to XLS in VBScript.

VBScript code samples for VBScript developers help to speed up coding of your application when using ByteScout Spreadsheet SDK. In order to implement the functionality, you should copy and paste this code for VBScript below into your code editor with your app, compile and run your application. Further enhancement of the code will make it more vigorous.

Free trial version of ByteScout Spreadsheet SDK is available on our website. Documentation and source code samples are included.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

CSVToXLS.vbs
      
Set document = CreateObject("Bytescout.Spreadsheet.Spreadsheet") document.RegistrationName = "demo" document.RegistrationKey = "demo" document.LoadFromFile("input.csv") ' save document document.SaveAs "Output.xls" ' save as xlsx document.SaveAs "Output.xlsx" ' close Spreadsheet Set document = Nothing MsgBox "Done! See output.xls"

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Spreadsheet SDK Home Page

Explore ByteScout Spreadsheet SDK Documentation

Explore Samples

Sign Up for ByteScout Spreadsheet SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Spreadsheet SDK Home Page

Explore ByteScout Spreadsheet SDK Documentation

Explore Samples

Sign Up for ByteScout Spreadsheet SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next