ime Format in Calculation

T

Tom Ventouris

I am using DateAdd("n",-30,[StartTime]) & " for " & [starttime] to insert
8.30am for 9.00am in a report - calculated from the StartTime in a Table. the
result is
8.30.00AM for 9.00.00AM. I need help to get rid of the Seconds.
Thanks in advance.
 
A

Arvin Meyer [MVP]

Try:

Format(DateAdd("n",-30,[StartTime]), "h:nn AM/PM) & " for " &
Format([starttime] , "h:nn AM/PM)
 

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