| c# Programming Glossary: retcellHow do I have Open XML spreadsheet “uncollapse” cells in a spreadsheet? http://stackoverflow.com/questions/4923359/how-do-i-have-open-xml-spreadsheet-uncollapse-cells-in-a-spreadsheet   row new Row RowIndex rowIndex  sheetData.Append row  Cell retCell row.Elements Cell .FirstOrDefault c c.CellReference.Value colName.. c c.CellReference.Value colName rowIndex  If retCell is not null and we are not inserting a new cell then just skip.. new cell then just skip everything and return the cell if retCell null   NOTE if conditions are not combined because we want to.. 
 |