S Samuel Jul 13, 2007 #1 Is there a method that I can use in access that counts the days between 2 specified dates? Thank you, Samuel
Is there a method that I can use in access that counts the days between 2 specified dates? Thank you, Samuel
G Guest Jul 13, 2007 #2 Have you tried the DateDiff function http://msdn2.microsoft.com/en-us/library/Aa262712(VS.60).aspx
F fredg Jul 13, 2007 #4 Is there a method that I can use in access that counts the days between 2 specified dates? Thank you, Samuel Click to expand... = [Date1]-[Date2] or = DateDiff("d",[Date1],[Date2])
Is there a method that I can use in access that counts the days between 2 specified dates? Thank you, Samuel Click to expand... = [Date1]-[Date2] or = DateDiff("d",[Date1],[Date2])