I'm creating a report in v8.5 that accesses three tables.
Table 1 is a bill file linked by customer account number to table 2 which is a customer file. Table 2 is linked in turn by SSN to table 3 which is an employee file. All links are equal joins. I want to only verify that there is an employee record for a given SSN and pick up the employee ID number for output. I wish to do this only for the first occurrence of the SSN, not for every occurrence.
Table 1 is a bill file linked by customer account number to table 2 which is a customer file. Table 2 is linked in turn by SSN to table 3 which is an employee file. All links are equal joins. I want to only verify that there is an employee record for a given SSN and pick up the employee ID number for output. I wish to do this only for the first occurrence of the SSN, not for every occurrence.