scan problem
Posted: Wed Sep 26, 2007 9:27 am
Hello,____I have created a report that will print a list of employees and types of transactions linked to each employee. The report groups employees by their classinfo related record. I want to limit the list to employees that have a classinfo of X. Some employees have multiple classinfo records. I have my query set to find all employees where CLASSINFO = X. When the relations are set as follows:____Master table_EMPINFO__Related__TRANSACTIONS_one to many__Related__CLASSINFO_one to one____The report runs and I get a list that works properly but only gives me employees where the first record in classinfo = X. If I remove the query I get a list of all employees grouped by the first record in the CLASSINFO table. ____I need the report to group them where any record in the CLASSINFO table = X. So I thought simply setting the CLASSINFO relation to scan would solve the problem.____When the relations are:____Master table_EMPINFO__Related__TRANSACTIONS_one to many__Related__CLASSINFO_one to many____The report finds zero records.____What am I doing wrong?____Thanks__