Options

Report for a list of employees based on filter.

zulqzulq Member Posts: 204
I have a report which takes in the employee number of an employee on a request form. Now I want the users to be able to enter multiple employee numbers on the request form separated by semicolon and then run the report for each employee.
I've a for loop for extracting the different employee number from the string entered in the request from. Here's the for loop:
nEl := CountSubString(StringNos,',');
FOR nStr := 1 TO nEl DO BEGIN
Empid := SELECTSTR(nStr,StringNos);
END;
nEl is number of employee numbers. The report has three dataitems and I placed the for loop on aftergetrecord of each table beginning it at the top and ending at the bottom i.e. end closing the being as the last line.
However after doing this the report on displays the last employee number in the inputted string and the rest. Any ideas on how to achieve this?

Thanks.
Few years ago we were not existing and few years to come we would be in the grave! So what will benefit us in the grave?
Sign In or Register to comment.