Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Adding 1 hour to AAC_EVENT.TIME_STAMP

Status
Not open for further replies.

gshadz37

Technical User
Mar 21, 2005
102
0
0
US
Hello,

I'm looking for a way to add 1 hour to our time formula in the Sign-On/Idle report in CE because the ACD is in CST, and our agent group is in EST. The formula in its current form is:

DayTime({AgentSignOnOff_Element.AAC_EVENT.TIME_STAMP})

Has anyone come across this before?

Thanks!
 
The timestamp field is just a number, so you can add directly to it.
Code:
DayTime({AgentSignOnOff_Element.AAC_EVENT.TIME_STAMP} + 10000)
should do the trick.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top