TheElephantMan
Programmer
Good morning, all.
I have two reports, one that lists employee skills grouped by employee, another that lists employee projects grouped by employee:
(First Report)
Fred
Java
C
Jake
SQL
Visio
Jonas
None
(Second Report)
Fred
Warp Drive Development
Jake
None
Jonas
Compiler Design
Team Building
I'd like to merge the two reports into one, so that the final product looks like this:
STAFF SKILL(S) PROJECT(S)
Fred
Java Warp Drive Development
C
Jake
SQL None
Visio
Jonas
None Compiler Design
Team Building
I have a few tutorials on group design, but all of them assume that the items being grouped all have the same count. I am stymied as to how to create the group on my own.
Much thanks, in advance.
TEM
I have two reports, one that lists employee skills grouped by employee, another that lists employee projects grouped by employee:
(First Report)
Fred
Java
C
Jake
SQL
Visio
Jonas
None
(Second Report)
Fred
Warp Drive Development
Jake
None
Jonas
Compiler Design
Team Building
I'd like to merge the two reports into one, so that the final product looks like this:
STAFF SKILL(S) PROJECT(S)
Fred
Java Warp Drive Development
C
Jake
SQL None
Visio
Jonas
None Compiler Design
Team Building
I have a few tutorials on group design, but all of them assume that the items being grouped all have the same count. I am stymied as to how to create the group on my own.
Much thanks, in advance.
TEM