I want to export the data in multiple sheets with multiple excel files. As you can see in my image I want to generate sheets as ID
changes and when ModalityId
changes I want to create new excel.
I have made code like this for this concern:
List<string> lstFile = new List<string>();
if (dtAltTag != null && dtAltTag.Rows.Count > 0)
{
string filePath = string.Empty;
string fileName = "";
Excel.Workbook workBook = new Excel.Workbook();
var workSheet = new Excel.Worksheet(fileName);
if (dtAltTag.Rows[0]["OldFormCode"] != null && dtAltTag.Rows[0]["OldFormCode"].ToString() != "")
{
fileName = dtAltTag.Rows[0]["OldFormCode"].ToString();
}
else
{
fileName = dtAltTag.Rows[0]["Code"].ToString();
}
workSheet.Name = fileName;
AddValue(0, workSheet, dtAltTag); // function is used to add the value in the sheet
workBook.Worksheets.Add(workSheet);
//data working
for (int i = 0; i < dtAltTag.Rows.Count; i++)
{
//for modality changes and first entery
//if (i == 0 || dtAltTag.Rows[i]["ModalityId"] != dtAltTag.Rows[i - 1]["ModalityId"])
//{
//if form changes then it should be in other sheet
if (i != 0 && dtAltTag.Rows[i]["ID"].ToString() != dtAltTag.Rows[i - 1]["ID"].ToString())
{
if (dtAltTag.Rows[i]["OldFormCode"] != null && dtAltTag.Rows[i]["OldFormCode"].ToString() != "")
{
fileName = dtAltTag.Rows[i]["OldFormCode"].ToString();
}
else
{
fileName = dtAltTag.Rows[i]["Code"].ToString();
}
var workSheet1 = new Excel.Worksheet(fileName);
AddValue(i, workSheet1, dtAltTag);
}
else
{
}
}
filePath = HostingEnvironment.MapPath(ConfigurationManager.AppSettings["ExcelFilesFilePath"]) + "Allitem";
if (!File.Exists(filePath))
Directory.CreateDirectory(filePath);
filePath = filePath + "\\" + fileName + "_" + DateTime.Now.ToString("MM_dd_yyy_HH_mm_ss") + ".xls";
workBook.Save(filePath);
lstFile.Add(filePath);
}
return lstFile;
When the id is changed I append new header but after that, I want to continue export data till the id change can't detect how to do this? How can I get the current sheet where I continue adding the value in else case?
I hope you are cleared of what I am trying to do!
Thanks in advance!