SheetData sheetData = new SheetData();for (int i = 0; i < 10; i++ ){ Row row = CreateSpreadsheetRow(i); sheetData.AppendChild(row);}Row formulaRow = new Row();// Create second cell to contain the numeric valueCell formulaCell = new Cell();CellFormula cellFormula = new CellFormula();cellFormula.Text = "SUM(A1:A10)";formulaCell.Append(cellFormula);formulaRow.AppendChild(formulaCell);sheetData.Append(formulaRow);return sheetData;