I am working with a Magic database used for Help Desk Ticketing. I am trying to get a count of closed tickets by our tier2 help desk without being sent to Tier 3. I say without being sent to Tier3 because when an issue is escalated to Tier 3 a work order is created. After the Work Order is closed by tier 3 then Tier 2 closes the Ticket. The problem I am having is the only way to see if a Work Order has been created is to look at the Ticket Details Table and say Not (Action_ID = WO_OPEN)this causes me to get duplicate records with every other action in the details table for each ticket #
This is the forumla Tier2Count I am using for my count.
IF NOT ({Details.Action ID} = "WO_OPEN")
and {Closed Group:} = "TIER2"
then
1
else
0
Then I insert a summary of Tier2Count.
I have tried a solution I found on this site
this in a running total
onfirstrecord or
(
{Incident.Incident #} <> previous ({Incident.Incident #})
)
and
{Incident.Incident #} = previous({Incident.Incident #})
in the section expert for the detail section suppression.
It has worked for me in the past but not on this particular formula.
Any advice will be appreciated.
Thanks-
CLK
This is the forumla Tier2Count I am using for my count.
IF NOT ({Details.Action ID} = "WO_OPEN")
and {Closed Group:} = "TIER2"
then
1
else
0
Then I insert a summary of Tier2Count.
I have tried a solution I found on this site
this in a running total
onfirstrecord or
(
{Incident.Incident #} <> previous ({Incident.Incident #})
)
and
{Incident.Incident #} = previous({Incident.Incident #})
in the section expert for the detail section suppression.
It has worked for me in the past but not on this particular formula.
Any advice will be appreciated.
Thanks-
CLK