thawkins99
Programmer
Hi thanks in advance. I need help selecting records. I'm using the following data
Name,department,codes
SusanR,Receiving, 1111
JaneS, AP, 2341
SusanR,H/R, 3378
I need to group by name, by department,this is where I need help. I also need to include any record that SusanR appears in even if she is in a different department. Using the above scenario I would get the following results:
SusanR,Receiving, 1111
SusanR,H/R, 3378
Name,department,codes
SusanR,Receiving, 1111
JaneS, AP, 2341
SusanR,H/R, 3378
I need to group by name, by department,this is where I need help. I also need to include any record that SusanR appears in even if she is in a different department. Using the above scenario I would get the following results:
SusanR,Receiving, 1111
SusanR,H/R, 3378