I am trying to get the folliwing DatePart query to work as I intended.
testcheck_time: DatePart("h",[EDS_testchecks]![Query_Start_Date]) & ":" & DatePart("n",[EDS_testchecks]![Query_Start_Date]) & ":" & DatePart("s",[EDS_testchecks]![Query_Start_Date])
The above works well but what it is doing is when there is a leading 0 in either the hour, minute or second data it is not displaying the zero. Is it possible to show the leading zero or is it something I will never be able to do.
Thanks
testcheck_time: DatePart("h",[EDS_testchecks]![Query_Start_Date]) & ":" & DatePart("n",[EDS_testchecks]![Query_Start_Date]) & ":" & DatePart("s",[EDS_testchecks]![Query_Start_Date])
The above works well but what it is doing is when there is a leading 0 in either the hour, minute or second data it is not displaying the zero. Is it possible to show the leading zero or is it something I will never be able to do.
Thanks