gennaroalpha7
Technical User
Hi -
I have a field, CallLog.CallStatus, and it's 'not equal to closed', but I want the tickets that are 'closed' from the (today) current date to only show on the report. How can that be accomplished without bringing up the closed tickets from days past?
Here is my code so far...
Conditional Formatting:
I also have a 'Count of CallLog.Tracker' field. I am trying to get that field to highlight in 'yellow' if it's over 40 and then to highlight in green if it's less then 40. Here is the code i have for that field and I can't get it to work.
Thanks for your help.
Alpha7
I have a field, CallLog.CallStatus, and it's 'not equal to closed', but I want the tickets that are 'closed' from the (today) current date to only show on the report. How can that be accomplished without bringing up the closed tickets from days past?
Here is my code so far...
Code:
{CallLog.CallStatus} <> "Closed" and
{CallLog.Tracker} in ["ANTONJ83", "bermun01", "CAMCACX1", "CHAVEV60", "COBBS53", "DONESC72", "FLOREV02", "HEALEP20", "Heldet00", "HERREC86", "jauree01", "LIMM01", "mirelj91", "Perezm58", "phant27", "Poste54", "QUEZAM01", "RAVANR37", "RIGORAD1", "salesc01", "VAZQUD01"] and
Date ({CallLog.RecvdDate}) >= CurrentDate -547 and
not ({CallLog.KeyWord} in ["FIS", "TP Admin Defect", "TP Capture Defect", "TP Sales Defect", "TP Service Defect", "TP Teller Defect", "TPSS Defect"])
Conditional Formatting:
I also have a 'Count of CallLog.Tracker' field. I am trying to get that field to highlight in 'yellow' if it's over 40 and then to highlight in green if it's less then 40. Here is the code i have for that field and I can't get it to work.
Code:
if ({CallLog.Tracker}) >= "40" then crYellow
else crGreen
Thanks for your help.
Alpha7