This code will produce the file which would be impossible to open in Excel 2010 x32 (Russian) properly:
```
using (var workbook = new XLWorkbook ())
{
var worksheet = workbook.Worksheets.Add ("Report");
worksheet.Cell (1, 1).Value = 1;
worksheet.Cell (1, 2).FormulaR1C1 = "=IF(A1>0;1;0)";
workbook.SaveAs (@"c:\temp\test.xlsx");
}
```
Comments: ** Comment from web user: FuriCuri **
```
using (var workbook = new XLWorkbook ())
{
var worksheet = workbook.Worksheets.Add ("Report");
worksheet.Cell (1, 1).Value = 1;
worksheet.Cell (1, 2).FormulaR1C1 = "=IF(A1>0;1;0)";
workbook.SaveAs (@"c:\temp\test.xlsx");
}
```
Comments: ** Comment from web user: FuriCuri **
Thanks, thats working fine. Guess thats difference in language representation of formulas.