Cells with formulas are not exported correctly to CSV.
My solution for this Bug is in the function "CopyTemplatesToExportWorksheet"
at Line 299
delete:
ws.Range("A1").CurrentRegion.Copy ExportWorksheet.Cells(FirstBlankRow, 1)
insert:
ws.Range("A1").CurrentRegion.Copy
ExportWorksheet.Range("A" & FirstBlankRow).PasteSpecial xlPasteValues '// copy only Values