Goran Level: Moderator
 Registered: 16-05-2002 Posts: 1681
|
Re: Null Items
But you didnt say what is the SQL statement that is generated by report, what are table structures that are used in report, cause I think the problem is how do you create relationships with tables. For instance, lets say you have two tables Departement and Calls. If CR linked these two tables with INNER JOIN command, you wont see any Departement that doesnt have any call, or to be more precize, departements whose primary keys dont exist in Calls table (as foreign keys) will not be shown. you need to create this kind of relationship
Departement LEFT JOIN Calls
____________________________
If you find the answer helpful, please mark this topic as solved.
|