Hello,
I have some data in a data table to be imported into a cell. The same datatable is be used in other functions in the website, so I can not alter the original datatable. How do I specify the columns that I want to be imported into a cell? The code below only imports the entire datatable.
Workbook workbook = new Workbook();
Worksheet sheet = workbook.Worksheets[0];
sheet.Name = "importing a datatable";
sheet.Cells.ImportDataTable(dtData, false, "A8");