Remou seems to suggest what I was saying. However, that brings up a good point. The table should have a field for the report namem, probably an alias, and maybe even a description. So you could then have a combo box that shows something like
Another approach I've used is to name reports according to their type, i.e. financial, operations, etc. with a three digit prefix (finMonthlySales, oprPersonell, etc) then use something like this as the source for the combobox for financials, for example:
SELECT [MSysObjects].[Name] FROM MsysObjects WHERE (Left$([Name],3)= "fin") And ([MSysObjects].[Type])=-32764 ORDER BY [MSysObjects].[Name];
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.