Hello,
I have a query that runs just fine. but when i make a report of the query it will not run. It says "Circular Refrence caused by 'query'
here is the sql of the query.
Code:
TRANSFORM First(qryHypotheticalReturns.YTD) AS FirstOfYTD
SELECT tblProducts.ProductName
FROM qryHypotheticalReturns INNER JOIN tblProducts ON qryHypotheticalReturns.ProductID = tblProducts.ProductID
WHERE (((tblProducts.ProductID)=4 Or (tblProducts.ProductID)=6))
GROUP BY tblProducts.ProductName, tblProducts.ProductID
ORDER BY tblProducts.ProductID
PIVOT qryHypotheticalReturns.Year;
the query runs on its own, but it will not run in my report. anyone deal with this issue before?
thanks,