When you need to convert your data to one or more Spreadsheet files (eg. MS Excel .xlxs), the WvExcelFileTemplate
will be useful for you.
This example is also available in a GitHub repository so you can review it in details.
The goal is to process a template Spreadsheet file "TemplateDoc1.xlsx" with a DataTable. The template file is always processed from left to right and top to bottom. Cell dependencies are taken into consideration. The template content is:
There are two helper methods LoadFileAsStream and SaveFileFromStream which are not displayed here, but if you are interested in their contents, check out the Github Repository.
using System.Data;
using WebVella.DocumentTemplates.Engines.SpreadsheetFile;
namespace WebVella.DocumentTemplates.ExcelExample;
internal class Program
{
static void Main(string[] args)
{
var templateFile = "TemplateDoc1.xlsx";
var ds = new DataTable();
ds.Columns.Add("position", typeof(int));
ds.Columns.Add("sku", typeof(string));
ds.Columns.Add("item", typeof(string));
ds.Columns.Add("price", typeof(decimal));
for (int i = 1; i < 6; i++)
{
var dsrow = ds.NewRow();
dsrow["position"] = i;
dsrow["sku"] = $"SKU{i}";
dsrow["item"] = $"item {i} description text";
dsrow["price"] = i * (decimal)0.98;
ds.Rows.Add(dsrow);
}
var template = new WvSpreadsheetFileTemplate
{
Template = new Utils().LoadFileAsStream(templateFile)
};
WvSpreadsheetFileTemplateProcessResult? result = template.Process(ds);
new Utils().SaveFileFromStream(result.ResultItems[0].Result!, $"result-{templateFile}");
}
}
Take notice to: