R
Rcarman11
So I've looked up and down this site and have tried the examples you gave but
I still can't make my rows concatenate. I've been trying to work off of
Duane's example and have built my database the same way he has. So here it
goes this is what I have.
I have a table that looks like this and is called tbl_SubGroupBulletCopy
ItemGroupID SEQUENCE# COPY
1234 1 thick and strong tape.
1234 2 good for plastic
1234 3 clear
258 1 Red foam
258 2 12x12 sheets
300 1 Blue foam
300 2 12x12 sheets
Now what I need is a table that looks like this
ItemGroupID Data
1234 thick and strong tape. </t> good for plastic
</t>clear
258 Red foam </t> 12x12 sheets
300 Blue foam </t> 12x12 sheets
Here is what my sql command is
Data: Concatenate("SELECT Copy & </t> FROM tbl_SubGroupBulletCopy WHERE
ItemGrpID =" & [ItemGrpID])
and I get this error
Undefined function 'Concatenate' in expression.
What am I doing wrong? Thanks so much for your help.
I still can't make my rows concatenate. I've been trying to work off of
Duane's example and have built my database the same way he has. So here it
goes this is what I have.
I have a table that looks like this and is called tbl_SubGroupBulletCopy
ItemGroupID SEQUENCE# COPY
1234 1 thick and strong tape.
1234 2 good for plastic
1234 3 clear
258 1 Red foam
258 2 12x12 sheets
300 1 Blue foam
300 2 12x12 sheets
Now what I need is a table that looks like this
ItemGroupID Data
1234 thick and strong tape. </t> good for plastic
</t>clear
258 Red foam </t> 12x12 sheets
300 Blue foam </t> 12x12 sheets
Here is what my sql command is
Data: Concatenate("SELECT Copy & </t> FROM tbl_SubGroupBulletCopy WHERE
ItemGrpID =" & [ItemGrpID])
and I get this error
Undefined function 'Concatenate' in expression.
What am I doing wrong? Thanks so much for your help.