@ADezii:
Yep still experiencing that report problem.
It's attaching all the records instead of the specific record i'm on.
I can't seem to figure what I did wrong.
This is my query that the report is based on
I designed the report the way I normally do:
- label in report header
- rest of the fields in Detail
Yep still experiencing that report problem.
It's attaching all the records instead of the specific record i'm on.
I can't seem to figure what I did wrong.
This is my query that the report is based on
Code:
SELECT user_problem_log.*, usr_problem_list.trouble_no, usr_problem_list.date, usr_problem_list.user, usr_problem_list.notes, users.First_Name, users.Last_Name, users.extension, offices.Office_Name, users.group_name, users.email FROM user_problem_log INNER JOIN ((offices INNER JOIN users ON offices.office_number = users.Office) INNER JOIN usr_problem_list ON users.win_id = usr_problem_list.user) ON user_problem_log.trouble_no = usr_problem_list.trouble_no;
- label in report header
- rest of the fields in Detail
Comment