I'm using Allen Browne's ConcatRelated Function. I've been using it for a while now with no issue. Today I'm getting the following error and I have no idea why.
runtime error 3061 Too few parameters. Expected 1:
Code:
Code:
Description: ConcatRelated("Description","concatrelated_DWI","Job_ID = " & [job_ID])
I'm using this also and this works with no issue:
Code:
Description: ConcatRelated("Description","concatrelated_test","Job_ID = " & [job_ID])
My guess is.. for what im doing right now there is nothing to concatenate. But I'm, pretty sure ive been in this situation before and its still worked using that line.
~Here is the full SQL:
Code:
SELECT Concatrelated_DWI.Site_Name, ConcatRelated("Description","concatrelated_DWI","Job_ID = " & [job_ID]) AS Description, Concatrelated_DWI.Date_Complete, Sum(Concatrelated_DWI.Cost) AS SumOfCost, Concatrelated_DWI.Job_ID
FROM Concatrelated_DWI
GROUP BY Concatrelated_DWI.Site_Name, ConcatRelated("Description","concatrelated_DWI","Job_ID = " & [job_ID]), Concatrelated_DWI.Date_Complete, Concatrelated_DWI.Job_ID;
Any advice on where I should be investigating would be appreciated.