I can get the time difference in hours and minutes, how can I modify my formula to show seconds as well?
Here is my formula:
numberVar dur := datediff("s",{v_MRODictation.RSD_DATE},{v_MROTranscribed.RSD_DATE}); //get the seconds between 2 dates
numberVar hrs;
numberVar min;
stringVar hhmm;
hrs := Truncate(Truncate(dur/60)/60);
min := Remainder(Truncate(dur/60),60);
hhmm :=totext(hrs,"00") + ":" + totext(min,"00");
hhmm