how can i calculate time in a repot/

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i need to print 12 midnight inmilitary time 2400 hours. i will not print
out. i have to use 23;59pm
 
You could try an expression that returns a string like:
IIf([TimeField]=1,"24:00",Format([TimeField],"hh:nn"))
 
lasandrad said:
i need to print 12 midnight inmilitary time 2400 hours. i will not print
out. i have to use 23;59pm


Midnight is 00:00

I suppose you could use some kind of expression to get 24:00
instead of 00:00. If you need help doing that, please post
a description of your time field/variable/expression. Is it
part of a date/time value?
 
Back
Top