I'm trying to see if I have some circular refferences like you mention, but I'm not sure. This report pulls data from a selection query (SQ1). This selection query pulls data from acrosstab query (CQ1). CQ1 gets its data from another Selection Query (SQ2), which in turn gets its data from a mix of tables and another selection query (SQ3). SQ3 gets it's data from tables only.
I think my problems are coming from CQ1 because I also get "not responding" errors when I work in that query design, but I do not know why. Here is the CQ1 SQL:
TRANSFORM Count([SPS PFEC Template].[Part No]) AS [CountOfPart No]
SELECT [SPS PFEC Template].[FNA Description], [SPS PFEC Template].[L/R Hand], [SPS PFEC Template].LineSide, [SPS PFEC Template].Oper_Num, Count([SPS PFEC Template].[Part No]) AS [Total Of Part No]
FROM [SPS PFEC Template]
WHERE ((([SPS PFEC Template].LineSide) Not Like "vaa"))
GROUP BY [SPS PFEC Template].[FNA Description], [SPS PFEC Template].[L/R Hand], [SPS PFEC Template].LineSide, [SPS PFEC Template].Oper_Num
ORDER BY [SPS PFEC Template].[FNA Description], [SPS PFEC Template].[L/R Hand]
PIVOT [SPS PFEC Template].Year;
Where [SPS PFEC Template] is SQ2 from above. I have many other queries and forms running from [SPS PFEC Template] and none of them give me this "not responding" error, so I'm thinking it must be in CQ1.