I want to set each element of collection in one row, but they are always added in one column, not row.
var headers = new List<string> {...};
var row = 4;
worksheet.Cells[row, 2, row, headers.Count()].LoadFromCollection(headers);
From code - I select Range
in what I want to load collection. But it doesn't work as expected. Result in image (Dates should be in row as column headers).
Using EPPlus version 4.5.3.2