Bulk Report Generation in DOCX Format via C#
Generate reports in DOCX format using data source & a template.
How to Generate DOCX based Reports Using C#
In order to create DOCX reports, we’ll use
API which is a feature-rich, powerful and easy to use report generation API for C# platform. Open
package manager, search for Aspose.Words and install. You may also use the following command from the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.Words
Steps to Assemble DOCX via C#
- Load template in an instance of Document class
- Create an object of ReportingEngine
- Set engine options
- Call ReportingEngine.BuildReport method
- Pass the template, data source as perameters
- Save the result with Doucment.Save method
System Requirements
Before integrating the code, make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET Framework, .NET Core, Windows Azure, Mono or Xamarin Platforms
- Development environment like Microsoft Visual Studio
- Aspose.Words for .NET referenced in your project
Generate DOCX Reports using C# example code
// build data source
var xml = JsonConvert.DeserializeXmlNode(File.ReadAllText("filenameDocx"), "RootElement");
var dataSet = new DataSet("datasourceName");
dataSet.ReadXml(new MemoryStream(Encoding.UTF8.GetBytes(xml.InnerXml)));
var dataTable = dataSet.Tables["datasourceName"];
// load template for report
var doc = new Document("template.docx");
// create ReportingEngine
var engine = new Reporting.ReportingEngine
{
// set appropriate options
Options = Reporting.ReportBuildOptions.AllowMissingMembers
};
// build report using template & data source
engine.BuildReport(doc, dataTable, "datasourceName");
// save the report
doc.Save("output.docx", SaveFormat.Doc);
Free App to Assemble DOCX
Check our live demos to create DOCX files with following benefits.
DOCX What is DOCX File Format
DOCX is a well-known format for Microsoft Word documents. Introduced from 2007 with the release of Microsoft Office 2007, the structure of this new Document format was changed from plain binary to a combination of XML and binary files. Docx files can be opened with Word 2007 and lateral versions but not with the earlier versions of MS Word which support DOC file extensions.
Read MoreOther Supported Report Generation Formats
Using C#, one can easily generate reports of multiple formats including.