I'm actually trying to do a calculation to display the time difference (in days, hours & minutes) between the date-times in two fields. I can get results in any one of these, but I'd rather it were as I stated. That's why I figured using 'mod' would help. Here's something quick & nasty I've started with & then got stuck;
SELECT Query1.[Lot-No], Query1.[Date-timeOn], Query1.[Date-timeOff], DateDiff("h",[Date-timeOn],[Date-timeOff]) AS TimeTaken, DateDiff("n",[Date-timeOn],[Date-timeOff]) Mod "h" AS TimeTakenM
FROM Query1;
TIA
Paul



