All Information on one Line

J

Jimmy

Hi,

I have a one-to-many relationship going between two
tables. I am trying, on a report, to show the multiple
records for a specific record all on one line.

ie: Main Table "Family Name"
sub-table "Father
Mother
Sister
Brother"

Would like to be able to printout like:

Family Name: Father, Mother, Sister, Brother

Appreciate any help.
Jimmy
 
N

Niklas Östergren

Hi!

Try this in the row source of the textbox:

= [YourTableName.Father] & ", " & [YourTableName.Mother] & ", " &
[YourTableName.Sister] & ", " & [YourTableName.Brother]

// Niklas
 

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