Am Pm

srburk

Registered User.
Local time
Today, 10:27
Joined
Dec 31, 2002
Messages
32
How do I pull out AM or PM from a given time?

For example...

1:13 pm

In column 2, I'd like it to automatically put PM.

I was thinking... Session: Format([Time],"___") but I'm not sure what to put as ___.
 
Expression:

IIf(Hour([Timefield])>=12,"PM","AM")
 

Users who are viewing this thread

Back
Top Bottom