I have a query from which I am tyring to pull information from a total time field for anything greater than 30 minutes. Can some one tell me what the format would be thanks
SELECT [Tbl FAC].Date, [Tbl FAC].[Time In], [Tbl FAC].[Time Out], [Tbl FAC].user, [Tbl FAC].[total time]
FROM [Tbl FAC]
WHERE ((([Tbl FAC].[total time])<=Now()-#12/30/1899 0:50:0#));
SELECT [Tbl FAC].Date, [Tbl FAC].[Time In], [Tbl FAC].[Time Out], [Tbl FAC].user, [Tbl FAC].[total time]
FROM [Tbl FAC]
WHERE ((([Tbl FAC].[total time])<=Now()-#12/30/1899 0:50:0#));