Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Duplicate Entries on BO Report

Status
Not open for further replies.

TheFitz

Programmer
Dec 18, 2003
140
GB
I am relatively new to Business Objects and I have beens asked to produce a report that has duplicate entries e.g. as shown below:
Code:
Emp Name     Project       Hours
--------     -------       -----
Mr J Bloggs  Project A     2.5
Mr J Bloggs  Project B     2.5
Mr J Bloggs  Project B     1.5
Mr J Bloggs  Project B     3.5
Mr F Bloggs  Project A     2.5
Mr F Bloggs  Project A     2.5
Mr F Bloggs  Project B     2.5
And I want to see:
Code:
Emp Name     Project       Hours
--------     -------       -----
Mr J Bloggs  Project A     2.5
             Project B     2.5
                           1.5
                           3.5
Mr F Bloggs  Project A     2.5
                           2.5
             Project B     2.5
Hope this makes sense, and can anyone help??

Thanks for your time in advance,

TheFitz

Fitz
Did you know, there are 10 types of people in this world:
* Those who understand binary
and
* Those who Don't!!
 
For duplicate records, goto optins in the Query panel and check the radio button to see dupliacte records.

Second thing, insert break on Emp Name column

 
You should select the EMP Name column by clicking on J Bloggs, then click on the BREAK icon (the one next to the filter).
Then do the same for the Project Column.

This will give you the report you are looking for.

Once you have set these breaks you can format them to include or exclude the employee and project names.

If Hours is defined as a measure, each row will simply show the total hours an employee spent on each project.

To keep the level of detail in your example, you may need to include a week number or something, alternatively define the hours as a dimension.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top