I have created a formula that shows all logged calls from a tracking software database (SQL). I have similar formulas that show me the total calls open and total calls closed in the time period. This only shows the overall total, but I need to break it down by the officer that logged the call. Here is the formula:
if ({CL_CALL_LOGGING.TIMEDATE_CALL_LOG} > {?Start_Date} and
{CL_CALL_LOGGING.TIMEDATE_CALL_LOG} < {?End_Date} then 1
else 0
I then have another formula that sums the count from this formula. I have been experimenting with breaking this down by officer without any luck. The total for each officer is actually the overall total. I have been experimenting with a formula {@Name} to break it down by officer:
if ({CL_CALL_LOGGING.OWNING_OFFICER} = {SV_HELP_CENTRE.REF}) then GroupName ({CL_CALL_LOGGING.OWNING_OFFICER})
This breaks down by the officers name, then the following formula is supposed to show the count for each officer:
if{CL_CALL_LOGGING.TIMEDATE_CALL_LOG} > {?Start_Date} and {CL_CALL_LOGGING.TIMEDATE_CALL_LOG} < {?End_Date} and {@Name} then 1 else 0
I keep getting a message that a boolean is required, and the mouse moves right in front of the {@Name} in the formula.
if ({CL_CALL_LOGGING.TIMEDATE_CALL_LOG} > {?Start_Date} and
{CL_CALL_LOGGING.TIMEDATE_CALL_LOG} < {?End_Date} then 1
else 0
I then have another formula that sums the count from this formula. I have been experimenting with breaking this down by officer without any luck. The total for each officer is actually the overall total. I have been experimenting with a formula {@Name} to break it down by officer:
if ({CL_CALL_LOGGING.OWNING_OFFICER} = {SV_HELP_CENTRE.REF}) then GroupName ({CL_CALL_LOGGING.OWNING_OFFICER})
This breaks down by the officers name, then the following formula is supposed to show the count for each officer:
if{CL_CALL_LOGGING.TIMEDATE_CALL_LOG} > {?Start_Date} and {CL_CALL_LOGGING.TIMEDATE_CALL_LOG} < {?End_Date} and {@Name} then 1 else 0
I keep getting a message that a boolean is required, and the mouse moves right in front of the {@Name} in the formula.