I am using the Open XML SDK to open an Excel xlsx file and I try to read the cellvalue on position A1 in each sheet. I use the following code:

using (SpreadsheetDocument spreadsheetDocument = SpreadsheetDocument.Open(openFileDialog1.FileName, false))
                {


                    var sheets = spreadsheetDocument.WorkbookPart.Workbook.Descendants<Sheet>();

                    foreach (Sheet sheet in sheets)
                    {

                        WorksheetPart worksheetPart = (WorksheetPart)spreadsheetDocument.WorkbookPart.GetPartById(sheet.Id);
                        Worksheet worksheet = worksheetPart.Worksheet;

                        Cell cell = GetCell(worksheet, "A", 1);

                        Console.Writeline(cell.CellValue.Text);





                    }

                }
private static Cell GetCell(Worksheet worksheet,
              string columnName, uint rowIndex)
    {
        Row row = GetRow(worksheet, rowIndex);

        if (row == null)
            return null;

        return row.Elements<Cell>().Where(c => string.Compare
               (c.CellReference.Value, columnName +
               rowIndex, true) == 0).First();
    }


    // Given a worksheet and a row index, return the row.
    private static Row GetRow(Worksheet worksheet, uint rowIndex)
    {
        return worksheet.GetFirstChild<SheetData>().
          Elements<Row>().Where(r => r.RowIndex == rowIndex).First();
    } 

The text in the first worksheet on position A1 is simply 'test' however, in my console I see the value '0' as cell.CellValue.Text

Does anyone have an idea to get the correct value of the cell?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 5 down vote accepted

All strings in an Excel worksheet are stored in a array like structure called the SharedSTringTable. The goal of this table is to centralize all strings in an index based array and then if that string is used multiple times in the document to just reference the index in this array. That being said, the 0 you received when you got the text value of the A1 cell is the index into the SharedStringTable. To get the real value you can use this helper function:

public static SharedStringItem GetSharedStringItemById(WorkbookPart workbookPart, int id)
{
    return workbookPart.SharedStringTablePart.SharedStringTable.Elements<SharedStringItem>().ElementAt(id);
}

Then in your code call it like this to get the real value:

Cell cell = GetCell(worksheet, "A", 1);
string cellValue = GetSharedStringItemById(spreadsheetDoc.WorkbookPart, cell.CellValue.Text);
link|improve this answer
2  
This is correct but does not address all of the issues required. Before looking up a cell value in the SST you need to actually determine if he cell value represents an SST index or is actually a value. – Samuel Neff Feb 26 '11 at 16:32
@Samuel Neff - By default Excel will put all basic strings into the SST and in this question he is only concerned with getting this basic string value. No need to over complicate a basic scenario. If he is dealing with formulas or other pieces of data then obviously the code above will need to change to incorporate your comment. – amurra Feb 26 '11 at 16:55
2  
but answering the basic question without even a hint that there are more complications he's absolutely going to run into next is misleading. At the very least there should be mention of identifying if a cell contains a string or a value and links to documentation related to determination of what's inside the cell. – Samuel Neff Feb 26 '11 at 21:51
1  
tend to agree with amurra on this one - the OP is just asking for the basic value. the fact through these comments that he now knows he may need to account for other stuff makes the answer sufficient for the question asked. other things like formulas could be asked in a different question. – Otaku Feb 28 '11 at 6:01
4  
I'm adding this comment because the actual solution for determining whether a cell value represents an SST index was never posted for some reason (extremely annoying): if (cell.DataType != null && cell.DataType == CellValues.SharedString) – genki Sep 22 '11 at 7:11
show 1 more comment
feedback

Amurra's answer seems to go ninety percent of the way, but it may need some nuance.

1) The function "GetSharedStringItemById" returns a SharedStringItem, not a string, such that the calling code example will not work. To get the actual value as a string, I believe you need to ask for the SharedStringItem's InnerText property, as follows:

public static string GetSharedStringItemById(WorkbookPart workbookPart, int id)
{
    return workbookPart.SharedStringTablePart.SharedStringTable.Elements<SharedStringItem>().ElementAt(id).InnerText;
}

2) The function also (correctly) asks for an int as part of its signature, but the example code call supplies a string, cell.CellValue.Text. It's trivial to convert the string to an int, but needs to be done, as the code as written might to be confusing.

link|improve this answer
feedback

Another option: Export your data to an html table and utilize stylesheets to specify the read only cells. See this page for more: http://www.c-sharpcorner.com/UploadFile/kaushikborah28/79Nick08302007171404PM/79Nick.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.