I have a very simple spreadsheet that contains a Rate formula in cell A1...
=RATE(12, -250, 5000).
When I save the spreadsheet in SpreadsheetML format with the below code, if you look at the contents of the XML file you will see that the formula was saved as...
=12,-250,5000
I have attached the Excel files for reference.
Can this be fixed?
Harry
var workbook = new Workbook();
workbook.Open("Rate.xls");
workbook.Save("Rate.xml");