如何从Excel序列日期转换为.NET日期时间?
例如39938是05/05/2009。
答案 0 :(得分:155)
答案 1 :(得分:71)
39938是自19/1年1月1日以来的天数?
在这种情况下,请使用框架库函数DateTime.FromOADate()
。
这个函数encapsulates所有细节,并且检查边界。
对于它的历史价值,这是一个可能的实现:
(C#)
public static DateTime FromExcelSerialDate(int SerialDate)
{
if (SerialDate > 59) SerialDate -= 1; //Excel/Lotus 2/29/1900 bug
return new DateTime(1899, 12, 31).AddDays(SerialDate);
}
VB
Public Shared Function FromExcelSerialDate(ByVal SerialDate As Integer) As DateTime
If SerialDate > 59 Then SerialDate -= 1 ''// Excel/Lotus 2/29/1900 bug
Return New DateTime(1899, 12, 31).AddDays(SerialDate)
End Function
<强> [更新]:强>
嗯......快速测试表明它实际上是休息两天。不确定区别在哪里。
好的:现在修好了问题。有关详细信息,请参阅注释。
答案 2 :(得分:1)
void ExcelSerialDateToDMY(int nSerialDate, int &nDay,
int &nMonth, int &nYear)
{
// Excel/Lotus 123 have a bug with 29-02-1900. 1900 is not a
// leap year, but Excel/Lotus 123 think it is...
if (nSerialDate == 60)
{
nDay = 29;
nMonth = 2;
nYear = 1900;
return;
}
else if (nSerialDate < 60)
{
// Because of the 29-02-1900 bug, any serial date
// under 60 is one off... Compensate.
nSerialDate++;
}
// Modified Julian to DMY calculation with an addition of 2415019
int l = nSerialDate + 68569 + 2415019;
int n = int(( 4 * l ) / 146097);
l = l - int(( 146097 * n + 3 ) / 4);
int i = int(( 4000 * ( l + 1 ) ) / 1461001);
l = l - int(( 1461 * i ) / 4) + 31;
int j = int(( 80 * l ) / 2447);
nDay = l - int(( 2447 * j ) / 80);
l = int(j / 11);
nMonth = j + 2 - ( 12 * l );
nYear = 100 * ( n - 49 ) + i + l;
}
切割和粘贴别人的才能......
答案 3 :(得分:1)
对于39938这样做: 39938 * 864000000000 + 599264352000000000
864000000000表示一天中的刻度数 599264352000000000表示从0001到1900年的刻度数