I am trying to use the datediff fucntion to obtain the diff between two dates and to display it as Days Hrs and Minutes
The results show as:
4 97 5775
When it should show as:
4 0 15
Here is my data being used in my Access query:
Date1 = 2005/06/27 19:45:00
Date2 = 2005/07/01 20:00:00
Days: DateDiff("d",[date1],[date2])
Hours: DateDiff("h",[date1],[date2])
Minutes: DateDiff("n",[date1],[date2])
Expr Duration: [Days] & " " & [Hours] & " " & [Minutes]
The results show as:
4 97 5775
When it should show as:
4 0 15
Here is my data being used in my Access query:
Date1 = 2005/06/27 19:45:00
Date2 = 2005/07/01 20:00:00
Days: DateDiff("d",[date1],[date2])
Hours: DateDiff("h",[date1],[date2])
Minutes: DateDiff("n",[date1],[date2])
Expr Duration: [Days] & " " & [Hours] & " " & [Minutes]