safari7391
Programmer
Crystal Reports XI
Windows 2000 Pro
Access Database
ODBC connection
Also I have a Left Outer Join on the detail table and a summarized table of the detail table. The data captures call center data, but it is rolled up to the skill leave of each agent not as each individual call – detail table. The summarized table is rolled up to the agent level, the reason for this is to be able to sort by different field from a parameter.
I am having a problem with duplicate records in the detail section. These records are to show as a single record so I can be able to sort on them through a parameter.
How they are shown now - Example:
Group1
DetailUser1
DetailUser2
DetailUser3
DetailUser2
DetailUser4
As you can see the DetailUser2 is showing up twice.
How I would like them to look - Example:
Group1
DetailUser1
DetailUser3
DetailUser2
DetailUser4
I am using the following formula under the Section Expert in the Detail Suppress section to suppress the duplicates, but it’s not suppressing all of the duplicates.
not onfirstrecord and
{@Agent_Name} = previous({@Agent_Name})
Windows 2000 Pro
Access Database
ODBC connection
Also I have a Left Outer Join on the detail table and a summarized table of the detail table. The data captures call center data, but it is rolled up to the skill leave of each agent not as each individual call – detail table. The summarized table is rolled up to the agent level, the reason for this is to be able to sort by different field from a parameter.
I am having a problem with duplicate records in the detail section. These records are to show as a single record so I can be able to sort on them through a parameter.
How they are shown now - Example:
Group1
DetailUser1
DetailUser2
DetailUser3
DetailUser2
DetailUser4
As you can see the DetailUser2 is showing up twice.
How I would like them to look - Example:
Group1
DetailUser1
DetailUser3
DetailUser2
DetailUser4
I am using the following formula under the Section Expert in the Detail Suppress section to suppress the duplicates, but it’s not suppressing all of the duplicates.
not onfirstrecord and
{@Agent_Name} = previous({@Agent_Name})