Hi,
Accoding to How to use dates and times in Excel:
"the number 32331.06 represents the date and time 7/7/1988 1:26:24 a.m"
I then think, the integer part, 32331, represents the total days between 1/1/1900 and 7/7/1988.
However, in VBA, I tried
Debug.Print DateDiff("d", "1/1/1900", "7/7/1988")
and got result 32329
Anything I misunderstood?
Accoding to How to use dates and times in Excel:
"the number 32331.06 represents the date and time 7/7/1988 1:26:24 a.m"
I then think, the integer part, 32331, represents the total days between 1/1/1900 and 7/7/1988.
However, in VBA, I tried
Debug.Print DateDiff("d", "1/1/1900", "7/7/1988")
and got result 32329
Anything I misunderstood?