I have a date in format \"4/5/2011\" (month/day/year) in a xlsx file in one of the cells. Im trying to parse the file and load those data in some classes.
So far the
Each cell has 2 properties r (CellReference) and s(StyleIndex)
StyleIndex for numbers is 2 and for date is 3
Date it is in ODate and you can convert to string format
value = DateTime.FromOADate(double.Parse(value)).ToShortDateString();