I have a table trans_hist in MS Access program where time is stored in short Date format \"HH:MM\" ex:
[![Image][1]][1]
Now I have created a query which tell
Try this.
SELECT UID, switch ( t>1 , '00:15' ,true,format(t,'hh:mm') ) as Time_Elapsed from ( SELECT UID, sum(Time_Elapsed) as t From Table1 Group By UID )