Excel reports in C#
How to create Excel reports in C# with formulas?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jonathan SterlingPosted Jun 30, 2015, 5:42 AM
Guest UserPosted Jul 31, 2014, 7:28 AM
var workbook = new XLWorkbook();
var ws = workbook.Worksheets.Add("Test");
ws.row.Cell(4).FormulaR1C1 = "=Sum(1,2,3)"
workbook.SaveAs(ms);
twitter @sumitjolly