omacron
Technical User
- Feb 5, 2002
- 149
Hi
I am sure making this harder then it is. I need to display the hour of a datetime field, problem is that;
is giving it to me in military time. I want to display it with AM/PM on it. Been looking around and can't find anything on how to do this. I could do something like this;
This seems silly to me and there has to be an easier way.
thanks
I am sure making this harder then it is. I need to display the hour of a datetime field, problem is that;
Code:
Hour(Table.Date)
Code:
select Hour(Table.Date)
case 1:
"1 AM"
....
thanks