combine records in a report

G

Guest

i have a database which looks like this
ID Name Comments
1 John needs to improve his comm skill.
2 Adam smart guy.
1 John great person to work with


What i want is that in the report somehow i can combine comments given to
John in to one text box.

forexample.

Comment:

needs to improve his comm skill.
 
J

John W. Vinson

i have a database which looks like this
ID Name Comments
1 John needs to improve his comm skill.
2 Adam smart guy.
1 John great person to work with


What i want is that in the report somehow i can combine comments given to
John in to one text box.

forexample.

Comment:

needs to improve his comm skill.

An alternative - on a Report anyway - would be to use the "Sorting and
Grouping" to group by ID and display the comments. You would put the name
information in the group header, and have a single textbox (with a line
control under it) in the Detail section of the report. This will *look* like
you describe, without the data actually being in one textbox.

It is possible, with some VBA code, to concatenate all the comments into one
field - but for data presentation purposes that may not be the best way to do
it!


John W. Vinson [MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top