Add Minutes to Time Field

G

Guest

In my query I would like to add two fields from one table:
[DateOfEntry] i.e. 12:40 PM
[TotalMinutes] i.e. 30
I realize that the [TotalMinutes] has to be divided by 60 but cannot make
the leap between this and my final calculation. My goal is to get the answer
in this example to equal 1:10 PM. Any help would be appreciated.
Brian
 
G

Guest

Your suggestion worked perfectly. TY.

Ofer Cohen said:
Try

DateAdd("n",[TotalMinutes],[DateOfEntry])

--
Good Luck
BS"D


briank said:
In my query I would like to add two fields from one table:
[DateOfEntry] i.e. 12:40 PM
[TotalMinutes] i.e. 30
I realize that the [TotalMinutes] has to be divided by 60 but cannot make
the leap between this and my final calculation. My goal is to get the answer
in this example to equal 1:10 PM. Any help would be appreciated.
Brian
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top