I am reading Excel worksheet data using C# and Microsoft.Office.Interop. The sheet contains some date values. When I am trying to read that value it is just giving the number (probably TimeSpan). I am having problem converting this number into DateTime.

Below is the code:

TimeSpan ts = TimeSpan.Parse(((Range)ws.Cells[4, 1]).Value2.ToString());

Where ws is Excel.WorkSheet.

Can anybody explain how should I convert this number (TimeSpan) into DateTime?

Thanks for sharing your valuable time.

link|improve this question

It could be giving you ticks which the datatime has a contructor for. – rerun Jan 25 '11 at 7:50
feedback

4 Answers

up vote 5 down vote accepted

You could do the following

double d = double.Parse(((Range)ws.Cells[4, 1]).Value2.ToString());

DateTime conv = DateTime.FromOADate(d);
link|improve this answer
Verified with the OP's test data of 40269 = Apr 1 2010: var when = DateTime.FromOADate(40269); – Marc Gravell Jan 25 '11 at 7:56
Thanks Greco! Your solution is correct. – IrfanRaza Jan 25 '11 at 7:56
Greco -- did you change your name? I'll update my answer if so :) – Tim Barrass Apr 13 at 18:54
Yup, you are right ;) – Dimi Toulakis Apr 14 at 6:25
feedback

It all depends on what the number looks like ;p That is typically the offset in some interval, into some epoch - for example seconds since 1 Jan 1970. So try, for example:

var when = new DateTime(1970,1,1).AddSeconds(number);

and then try AddMilliseconds(number), AddTicks(number) etc until the date matches.

link|improve this answer
Thanks Marc for your quick reply. Can you please tell me what should i consider if i m getting 40269 for Apr/1/2010. – IrfanRaza Jan 25 '11 at 7:54
@IrfanRaza - in that case @Greco has the answer; var when = DateTime.FromOADate(40269); – Marc Gravell Jan 25 '11 at 7:55
feedback

This is just icing: Excel represents dates as OLE automation dates. These values are floating point numbers, the integer part of which is the number of days after midnight, 30 Dec 1899. Or before, if it's negative. Greco's answer gives you the best way to convert :)

link|improve this answer
feedback

Use the following:

DateTime dt = new DateTime().Add( TimeSpan.FromMilliseconds( 1304686771794 ) )
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.