cancel
Showing results for 
Search instead for 
Did you mean: 

Group by Time

Former Member
0 Kudos

I am trying to group all the calls we had. I want all the day time calls from 7am to 9pm in one group and the rest in another. The field is formatted: 1/1/2008 7:26:14PM.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

create a formula with:


if time({datetime.field}) in time(7,0,0) to time(20,59,59) then "Daytime Calls"
else "Nighttime Calls";

Group on this formula.

Former Member
0 Kudos

Worked perfect! Thank you.

Answers (0)