G
gillah11
I have the following critera built for a field in one of my Access queries.
1DaySurvivalCX: Sum(IIf( ([EnterpriseName] In
("CSR_Cancel_Request","CSR_Cancel_Request_Rollover","Queue") Or
[EnterpriseName] In ("NULL","") And [Ticket_Header] In ("Automatic comment -
Cancel Save Attempt","Cancel Team") Or [EnterpriseName] Is Null And
[Ticket_Header] In ("Automatic comment - Cancel Save Attempt","Cancel Team"))
And [One_Day_Survival]=1,[One_Day_Survival],0))
This currently sums the survivials of a records based on the criteria of the
EnterpriseName or Ticket_Header. Now I need to determine the survivals
exclusive of Sundays but only until July 1, 2010 when I then need to
automatically include records from Sunday. My though was to add something
like this into the existing critera:
(Date[Ticket_Created_Date ]<#7/1/2010# and Weekday([Ticket_Created_Date ] in
(2,3,4,5,6,7))
but no matter how I add it, the criteria continues to include the sum of the
Sunday survivals.
I think I have the right concept, but would appreciate further input on how
to make this work.
Thanks in advance...
1DaySurvivalCX: Sum(IIf( ([EnterpriseName] In
("CSR_Cancel_Request","CSR_Cancel_Request_Rollover","Queue") Or
[EnterpriseName] In ("NULL","") And [Ticket_Header] In ("Automatic comment -
Cancel Save Attempt","Cancel Team") Or [EnterpriseName] Is Null And
[Ticket_Header] In ("Automatic comment - Cancel Save Attempt","Cancel Team"))
And [One_Day_Survival]=1,[One_Day_Survival],0))
This currently sums the survivials of a records based on the criteria of the
EnterpriseName or Ticket_Header. Now I need to determine the survivals
exclusive of Sundays but only until July 1, 2010 when I then need to
automatically include records from Sunday. My though was to add something
like this into the existing critera:
(Date[Ticket_Created_Date ]<#7/1/2010# and Weekday([Ticket_Created_Date ] in
(2,3,4,5,6,7))
but no matter how I add it, the criteria continues to include the sum of the
Sunday survivals.
I think I have the right concept, but would appreciate further input on how
to make this work.
Thanks in advance...