I am trying to set data type of cell, but it seems that\'s impossible to do with EPPlus.
If I place a number as value in cell, I get General data type in exported Excel
This advice is great, for setting number cell type in Excel I used
worksheet.Column(1).Style.Numberformat.Format = "#,##0.000";
but I would really like to find some table of formats in EPPlus and cell types in Excel to get another Excel types like Currency, Percentage etc...