ByteScout Barcode Suite - C# - Calculate xirr function with spreadsheet sdk - ByteScout

ByteScout Barcode Suite – C# – Calculate xirr function with spreadsheet sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Barcode Suite – C# – Calculate xirr function with spreadsheet sdk

How to calculate xirr function with spreadsheet sdk in C# and ByteScout Barcode Suite

This code in C# shows how to calculate xirr function with spreadsheet sdk with this how to tutorial

These source code samples are assembled by their programming language and functions they apply. ByteScout Barcode Suite is the bundle that privides 3 SDK products to generate barcodes (Barcode SDK), read barcodes (Barcode Reaer SDK) and read and write spreadsheets (Spreadsheet SDK). It can be applied to calculate xirr function with spreadsheet sdk using C#.

The SDK samples given below describe how to quickly make your application do calculate xirr function with spreadsheet sdk in C# with the help of ByteScout Barcode Suite. Just copy and paste the code into your C# application’s code and follow the instructions. Check C# sample code samples to see if they respond to your needs and requirements for the project.

If you want to try other source code samples then the free trial version of ByteScout Barcode Suite is available for download from our website. Just try other source code samples for C#.

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

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

Program.cs
      
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text; using Bytescout.Spreadsheet; namespace CSharp { class Program { static void Main(string[] args) { // Create new Spreadsheet Spreadsheet document = new Spreadsheet(); // Set locale document.Workbook.Locale = new System.Globalization.CultureInfo("en-US"); // Add new worksheet Worksheet worksheet = document.Workbook.Worksheets.Add(); // Fill some data worksheet.Cell(1, 1).Value = new DateTime(2008, 01, 01); worksheet.Cell(1, 2).Value = 100; worksheet.Cell(2, 1).Value = new DateTime(2009, 01, 01); worksheet.Cell(2, 2).Value = -200; // Apply function worksheet.Cell(4, 1).Formula = "=XIRR(C2:C3,B2:B3,0)"; // Read value worksheet.Cell(4, 2).Value = worksheet.Cell(4, 1).Value; // delete output file if exists already if (File.Exists("Output.xls")) { File.Delete("Output.xls"); } // Save document document.SaveAs("Output.xls"); // Close Spreadsheet document.Close(); // open generated XLS document in default program Process.Start("Output.xls"); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode Suite Home Page

Explore ByteScout Barcode Suite Documentation

Explore Samples

Sign Up for ByteScout Barcode Suite 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 Barcode Suite Home Page

Explore ByteScout Barcode Suite Documentation

Explore Samples

Sign Up for ByteScout Barcode Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next