SpreadsheetUtility 1.4.0

dotnet add package SpreadsheetUtility --version 1.4.0
NuGet\Install-Package SpreadsheetUtility -Version 1.4.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SpreadsheetUtility" Version="1.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SpreadsheetUtility --version 1.4.0
#r "nuget: SpreadsheetUtility, 1.4.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SpreadsheetUtility as a Cake Addin
#addin nuget:?package=SpreadsheetUtility&version=1.4.0

// Install SpreadsheetUtility as a Cake Tool
#tool nuget:?package=SpreadsheetUtility&version=1.4.0

SpreadsheetUtility

Ultra lightweight spreadsheet utility to display processed collections of data and occasionally read it

license GitHub release (latest by date)

Features

  • Uses XLSX file format
  • Writes public properties of a collection into a dedicated sheet
  • Reads sheet data into an Enumerator(List)
  • Supports multiple sheets
  • Auto-fits column width and freezes the first row for comfortable viewing
  • Can set a startup sheet
  • Supports type independent sheet names
  • Supports custom string formatting
  • Supports color scale formatting
  • Supports horizontal and vertical data layout
  • Can exclude specific properties from writing to the spreadsheet
  • Supports formulas referencing values in the same entry
  • Can set tooltips to columns in the form of a comment on the title cell

Tutorial

Let's create an employee class to store in a spreadsheet.

class Employee
{
    public string? Name { get; set; }
    public string? Position { get; set; }

    [Format("0$")]
    [ColorScale("red", "#00FF00" /* green */)]
    public decimal Salary { get; set; }

    public Employee() { }

    public Employee(string name, string position, decimal salary)
    {
        Name = name;
        Position = position;
        Salary = salary;
    }
}

Now we can make an array of company's employees.

var employees = new[]
{
    new Employee("John", "CEO", 10000),
    new Employee("Steve", "Manager", 6000),
    new Employee("Will", "Senior Software Engineer", 4000),
    new Employee("Kate", "Software Engineer", 2000),
    new Employee("Paul", "Quality Assurance", 1000)
};

This array can now go into the spreadsheet.

using (var spreadsheet = new Spreadsheet("Company.xlsx"))
{
    spreadsheet.Write(employees);
}

Here is how this data looks in the spreadsheet.

242417480-155379da-b753-4069-a057-4022192345e5

And if we need to read some of that data back, we can do it too.

using (var spreadsheet = new Spreadsheet("Company.xlsx"))
{
    foreach (var employee in spreadsheet.Read<Employee>())
    {
        Console.WriteLine($"Salary: {employee.Salary} \t Position: {employee.Position}");
    }
}

242417436-5354153c-b40e-436d-9619-9652f3082cc0

You can review the whole tutorial here

Additional features

Layout

By default all sheets will have a horizontal data layout but we can change it to vertical using Layout attribute.

[Layout(Flow.Vertical)]
class Employee
{
    public string? Name { get; set; }
    public string? Position { get; set; }

    [Format("0$")]
    [ColorScale("red", "#00FF00" /* green */)]
    public decimal Salary { get; set; }

    public Employee() { }

    public Employee(string name, string position, decimal salary)
    {
        Name = name;
        Position = position;
        Salary = salary;
    }
}

Here is how it looks in the spreadsheet.

242971009-7aff29ad-88f5-413e-8be6-bb6d73773327

Hidden attribute

If there is no need to export a property to the spreadsheet we can exclude it via Hidden attribute.

class Employee
{
    [Hidden]
    public string? Name { get; set; }
    public string? Position { get; set; }
    ...
}

244773068-853d573e-a25a-40e3-a65a-5c50c7ddbcbc

Formula

Sometimes we want to have cells that update in real time or react to the changes we make in the spreadsheet. For this case we can use formulas. Keep in mind though that formulas can only reference properties in the same line. Also note that we don't declare a setter for formula property as we don't really need to read the formula back.


class Employee
{
    ...
    [Format("0$")]
    [ColorScale("red", "#00FF00" /* green */)]
    public decimal Salary { get; set; }

    public string DesiredSalary => $"= {nameof(Salary)} * 2";
    ...
}

244774728-1440bcbf-e5b4-417b-be68-80d2a64afd5a

Tooltip

If descriptive property name would take too much space, use shortened name and set a tooltip explaining what data is contained in the slot.

class Employee
{
    [Tooltip("I don't care about surnames")]
    public string? Name { get; set; }
    public string? Position { get; set; }
    ...
}

soffice bin_n7aAjVXWdx

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.0 100 3/13/2024
1.3.4 129 8/18/2023
1.3.3 131 8/10/2023
1.3.1 144 6/12/2023
1.3.0 119 6/9/2023
1.2.0 125 6/2/2023
1.1.0 121 5/31/2023