I have this excel sheet I produce right out of a C#.NET application with EPPlus and I have a formula that won't execute unless I click manually on the cell and press enter.
This is my current output (First value being F column and second being G) :
02:10:58 04:30:00 =F1/G1
01:50:52 04:06:00 =F2/G2
This is what it should look like:
02:10:58 04:30:00 0,485061728
01:50:52 04:06:00 0,450677507
The values on C# side are initialized as strings and that's probably what's causing the error :
string performance = "=F" + (list.Count + 2) + "/G" + (list.Count + 2)
Is there a workaround or another way to initialized my column in order to show directly the value to user?
Thanks!
EDIT
Code that creates the excel file
ExcelWorksheet worksheet = package.Workbook.Worksheets.Add("Informations_OF");
worksheet.Cells["A1"].LoadFromCollection(list.ToListExport(), true);
worksheet.Cells[worksheet.Dimension.Address].AutoFitColumns();