Joining Rows

G

Greg B

Hi all I am very inexperienced at Access and I am wondering on how to
connect names. In one table I have the surname and first name and on
another table I wish to combine them so the report shows

i.e.

Brow, G.

The name of the original table is individual, the rows are fname and sname.

Thanks

Greg Brow
 
J

J. Goddard

Hi -

You don't need to put them another table in combined form. You can
combine them in a query field (along with all the other data you need
for the report), base the report on the query, and then use the field in
the report.

Fullname:[individual].[sname] & ", " & [individual].[fname]

would be the expression for the query field, and the report control
would have [fullname] as its control source.

P.S. : I assume by "Rows" you are referring to table fields?

John
 
G

Greg B

Thanks for that,
Greg
J. Goddard said:
Hi -

You don't need to put them another table in combined form. You can
combine them in a query field (along with all the other data you need for
the report), base the report on the query, and then use the field in the
report.

Fullname:[individual].[sname] & ", " & [individual].[fname]

would be the expression for the query field, and the report control would
have [fullname] as its control source.

P.S. : I assume by "Rows" you are referring to table fields?

John


Greg said:
Hi all I am very inexperienced at Access and I am wondering on how to
connect names. In one table I have the surname and first name and on
another table I wish to combine them so the report shows

i.e.

Brow, G.

The name of the original table is individual, the rows are fname and
sname.

Thanks

Greg Brow
 

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