I have a report that looks like this:
Date Client Name Rates Hours
Mon, May 26 John Doe 19 5
Tue, May 27 John Doe 17 10
Wed, May 28 John Doe 19 5
Thr, May 29 John Doe 17 10
Fri, May 30 John Doe 19 5
Mon, May 26 John Doe 18.50 5
I would like for my report to look like this:
John Doe 19 15
17 20
18.50 5
I would like to combine the Rates and the hours if they are the same. Printing only one line per rate. I would also like to print the name only once. How can I accomplish this task?
Date Client Name Rates Hours
Mon, May 26 John Doe 19 5
Tue, May 27 John Doe 17 10
Wed, May 28 John Doe 19 5
Thr, May 29 John Doe 17 10
Fri, May 30 John Doe 19 5
Mon, May 26 John Doe 18.50 5
I would like for my report to look like this:
John Doe 19 15
17 20
18.50 5
I would like to combine the Rates and the hours if they are the same. Printing only one line per rate. I would also like to print the name only once. How can I accomplish this task?