D Dissander Registered User. Local time Today, 02:43 Joined Mar 22, 2017 Messages 29 Jul 12, 2017 #1 Dear Team, I have a table with 2 fields with dates - TestDate & ReceptionDate. I'd like to get the time difference between the TestDate & receptionDate - Basically, how long it took to do a test. Table attached. Thank you. Much appreciated. Attachments Database11TEST.accdb Database11TEST.accdb 364 KB · Views: 82
Dear Team, I have a table with 2 fields with dates - TestDate & ReceptionDate. I'd like to get the time difference between the TestDate & receptionDate - Basically, how long it took to do a test. Table attached. Thank you. Much appreciated.
Ranman256 Well-known member Local time Today, 05:43 Joined Apr 9, 2015 Messages 4,354 Jul 12, 2017 #2 For days, use D DateDiff("d",date1,date2) Hours= h Months=m Etc...
D Dissander Registered User. Local time Today, 02:43 Joined Mar 22, 2017 Messages 29 Jul 12, 2017 #3 Thank you Ranman256. Date1 = [RequestDate]?
D Dissander Registered User. Local time Today, 02:43 Joined Mar 22, 2017 Messages 29 Jul 13, 2017 #4 It worked. Thank you.