M
mark909
Ive got quite alot of queries and reports with subreports in my database now.
Is there anyway of getting a count of these?
Is there anyway of getting a count of these?
Danny said:SELECT MSysObjects.Type, Count(MSysObjects.Type) AS Total
FROM MSysObjects
GROUP BY MSysObjects.Type
ORDER BY MSysObjects.Type, Count(MSysObjects.Type);