I have an Excel,
A B C D
-- --- --- ---
3 4
7 8 9 10
In Interop.Excel I use.
xlSheet.Cells(1, 3).Formula.ToString
To get the value of row 1 column 3 which the result would be 3 OR
xlSheet.Cells(1, 2).Formula.ToString
To get the value of row 1 column 2 which the result would be an Empty string
How do I go about this using Open XML?