I would like to know if you can fit a long text to the size of the cell in using EPPLUS.dll
You could use something like being
double columnWidth = 50;
worksheet.Column(1).Width = columnWidth;
to define the width of the column
You could also see the auto fit
worksheet.Cells["A1:K20"].AutoFitColumns();