Hello all,
I have a query that looks up Applications by people. For every person I find, I also need to find the number of applications booked. I can do this fine and it comes up similar to this:
Name PersonID Appp Bkd
John Doe 12345 100 200
John Doe 12345 100 201
John Doe 12345 100 203
John Doe 12345 101 200
John Doe 12345 101 201
John Doe 12345 101 203
What I want, is this output:
Name PersonID Appp Bkd
John Doe 12345 100 200, 201, 203
John Doe 12345 101 200, 201, 203
BKD, APP, and Person info is coming from three seperate tables all related on the PersonID.
Any ideas how I can get the output I want?
Chris
I have a query that looks up Applications by people. For every person I find, I also need to find the number of applications booked. I can do this fine and it comes up similar to this:
Name PersonID Appp Bkd
John Doe 12345 100 200
John Doe 12345 100 201
John Doe 12345 100 203
John Doe 12345 101 200
John Doe 12345 101 201
John Doe 12345 101 203
What I want, is this output:
Name PersonID Appp Bkd
John Doe 12345 100 200, 201, 203
John Doe 12345 101 200, 201, 203
BKD, APP, and Person info is coming from three seperate tables all related on the PersonID.
Any ideas how I can get the output I want?
Chris