thread767-1436403
Hello LB and everyone!
Using Crystal XI R2 and Remedy.
I have the same problem as this thread.
I have to calculate the business hours ,but for us tickets can come in 24*7 and 365 and also they can be closed 24*7 365,But user wants to exclude the weekedns ,holidays and after hours.
I used your method of moving the ticket to next day if they are opened or closed after hours.
Now my problem is when i move them to nextday when they fall into wwekend or holiday,i'm having trouble.
I'm getting negative values.
Please help.
I did exactly as in KenHammady and used your formula to move them to next day.
//MOving the HQ-Open date to next day if it opens after business hours.
if time({HPD_HelpDesk.HQ_Open}) > time(17,0,0) then
datetime(date(dateadd("d",1, {HPD_HelpDesk.HQ_Open})),time(8,0,0)) else
if time({HPD_HelpDesk.HQ_Open}) < time(8,0,0) then
datetime(date({HPD_HelpDesk.HQ_Open}),time(8,0,0)) else
{HPD_HelpDesk.HQ_Open}
Please help.
Hello LB and everyone!
Using Crystal XI R2 and Remedy.
I have the same problem as this thread.
I have to calculate the business hours ,but for us tickets can come in 24*7 and 365 and also they can be closed 24*7 365,But user wants to exclude the weekedns ,holidays and after hours.
I used your method of moving the ticket to next day if they are opened or closed after hours.
Now my problem is when i move them to nextday when they fall into wwekend or holiday,i'm having trouble.
I'm getting negative values.
Please help.
I did exactly as in KenHammady and used your formula to move them to next day.
//MOving the HQ-Open date to next day if it opens after business hours.
if time({HPD_HelpDesk.HQ_Open}) > time(17,0,0) then
datetime(date(dateadd("d",1, {HPD_HelpDesk.HQ_Open})),time(8,0,0)) else
if time({HPD_HelpDesk.HQ_Open}) < time(8,0,0) then
datetime(date({HPD_HelpDesk.HQ_Open}),time(8,0,0)) else
{HPD_HelpDesk.HQ_Open}
Please help.