Count incoming ticket by specific time
답변함I would like to count incoming ticket by specific time with formula as below:
- #Incoming ticket daily = total ticket of previous date from 17:00-23:59 + total ticket of current date from 00:00 to 16:59
Is there any way to create the report as requirement ?
-
Hi Edwin,
You can try this formula:
IF (([Ticket created - Date]=DATE_ADD(TODAY(),"day",-1)) AND ([Ticket created - Hour]>16))or (([Ticket created - Date]=TODAY()) AND ([Ticket created - Hour]<17))THEN[Ticket ID] ENDIFIt will give you this: https://www.evernote.com/l/AkCqHHz6LFVGf6vhd_qVcQU_clOmT5K0xTI
댓글을 남기려면 로그인하세요.
1 댓글