>I have a calculated field in a query that returns the difference between two
> times with a time format of h:nn; for example, one hour and thirty minutes is
[quoted text clipped - 3 lines]
> 30 and not 90. How do I format or calculate the field to return the value in
> minutes so that 1:30=90, 2:45=165, 0:33=33?
Are you using n in a Format or in DateDiff?
Your DateDiff function can calculate the difference in minutes:
? datediff("n", #01:00#, #02:30#)
90
Tom Lake
Scott - 03 Mar 2008 15:04 GMT
I was using format. I changed it to DateDiff as per your example and it
returned the minutes just like I was looking for!
Thank you,
Scott
> >I have a calculated field in a query that returns the difference between two
> > times with a time format of h:nn; for example, one hour and thirty minutes is
[quoted text clipped - 11 lines]
>
> Tom Lake