I want to display two data tables one after another in the same excel worksheet in c#.I have tried like this.
var workBook = new XLWorkbook();
workBook.Worksheets.Add(dataSet.table1);
workBook.Worksheets.Add(dataSet.table2);
But it was creating two worksheets in the same excel. Anyone help me how can i do that?