C
CW
Using Access 2003, we have a table where we hold the various box numbers
holding goods for each order (ref). We want to display the several box
numbers all in one query field. In an earlier post I was directed to a
Concatenate function in Roger's Access Library and I have tried to adapt this
for our application but get the error message "Undefined function
'Concatenate' in expression".
Here is the SQL
SELECT tblStgBoxesForJob.Ref, Concatenate("SELECT StgBoxNbr FROM
tblStgBoxesForJob WHERE Ref =" & [Ref]) AS StgBoxNbr
FROM tblStgBoxesForJob;
Where am I going wrong, please?
Many thanks
CW
holding goods for each order (ref). We want to display the several box
numbers all in one query field. In an earlier post I was directed to a
Concatenate function in Roger's Access Library and I have tried to adapt this
for our application but get the error message "Undefined function
'Concatenate' in expression".
Here is the SQL
SELECT tblStgBoxesForJob.Ref, Concatenate("SELECT StgBoxNbr FROM
tblStgBoxesForJob WHERE Ref =" & [Ref]) AS StgBoxNbr
FROM tblStgBoxesForJob;
Where am I going wrong, please?
Many thanks
CW