Concatentation woes

J

JohnLute

I have a field:
tblPKCGPhysicalAttributes.Style

Style is a combo box that queries:
tblPKCGStyles.txtCodeID.CorrugatedStyles

txtCodeID is the bound column and it's values are saved in the Style field.

My report needs to display both txtCodeID and CorrugatedStyles.

I'm very confused by this and would greatly appreciate any guidance you
might have.

Thanks!
 
D

Duane Hookom

Can you add the table tblPKCGStyles to your report's record source and
include the field?
 
J

JohnLute

Thanks, Duane. tblPKCGStyles is an unrelated table. If I add to the query
then I'll have issues.

Do I need to make this table relational in order to have both txtCodeID and
CorrugatedStyles display on my report?
 
M

Marshall Barton

JohnLute said:
I have a field:
tblPKCGPhysicalAttributes.Style

Style is a combo box that queries:
tblPKCGStyles.txtCodeID.CorrugatedStyles

txtCodeID is the bound column and it's values are saved in the Style field.

My report needs to display both txtCodeID and CorrugatedStyles.

I'm very confused by this and would greatly appreciate any guidance you
might have.

Add the tblPKCGStyles table to the report's record sosurce
query. Set the join line between the two tables from
tblPKCGPhysicalAttributes.Style to tblPKCGStyles.CodeID.
Then you can add the CorrugatedStyles field to the query's
field list.
 

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