Hi, I have an Access 2003 report that pulls from several tables. I am trying to figure out why the report is not returning all records. Here are the table properties:
SELECT tblTenant.[General Fund %], tblTenant.BUDGET, tblTenant.TENANT, tblTenant.ADDRESS AS tblTenant_ADDRESS, tblTenant.CSZ, tblTenant.EMPLOYEES, tblTenant.ADA, tblTenant.[PROPERTY SURVEY], [Current Rent Rates].RentalRate, [Current Rent Rates].[Sq Ft Rate], tblAgent.NAME AS tblAgent_NAME, tblAgent.ADDRESS AS tblAgent_ADDRESS, tblDept.DEPTABR, tblLease.REGION, tblLease.[SQ FT], tblLease.[START DATE], tblLease.[END DATE], tblLease.[TIME OF RENEWAL], tblLease.CUSTODIAL, tblLease.UTILITIES, tblLessor.NAME AS tblLessor_NAME, tblLessor.ADDRESS AS tblLessor_ADDRESS, tblLessor.[CITY STATE ZIP] FROM (((tblLessor INNER JOIN (tblAgent INNER JOIN tblLease ON tblAgent.AGENTID=tblLease.AgentID) ON tblLessor.LESSORID=tblLease.LessorID) INNER JOIN (tblDept INNER JOIN tblTenant ON tblDept.DEPTID=tblTenant.DeptID) ON tblLease.LeaseID=tblTenant.LeaseID) INNER JOIN tblRents ON tblTenant.LeaseID=tblRents.LeaseID) INNER JOIN [Current Rent Rates] ON tblRents.RentID=[Current Rent Rates].RentID;
I have been wracking my brain trying to figure out why it is not returning more than half of the records in [Current Rent Rates], and can't seem to figure it out. Please help!!
SELECT tblTenant.[General Fund %], tblTenant.BUDGET, tblTenant.TENANT, tblTenant.ADDRESS AS tblTenant_ADDRESS, tblTenant.CSZ, tblTenant.EMPLOYEES, tblTenant.ADA, tblTenant.[PROPERTY SURVEY], [Current Rent Rates].RentalRate, [Current Rent Rates].[Sq Ft Rate], tblAgent.NAME AS tblAgent_NAME, tblAgent.ADDRESS AS tblAgent_ADDRESS, tblDept.DEPTABR, tblLease.REGION, tblLease.[SQ FT], tblLease.[START DATE], tblLease.[END DATE], tblLease.[TIME OF RENEWAL], tblLease.CUSTODIAL, tblLease.UTILITIES, tblLessor.NAME AS tblLessor_NAME, tblLessor.ADDRESS AS tblLessor_ADDRESS, tblLessor.[CITY STATE ZIP] FROM (((tblLessor INNER JOIN (tblAgent INNER JOIN tblLease ON tblAgent.AGENTID=tblLease.AgentID) ON tblLessor.LESSORID=tblLease.LessorID) INNER JOIN (tblDept INNER JOIN tblTenant ON tblDept.DEPTID=tblTenant.DeptID) ON tblLease.LeaseID=tblTenant.LeaseID) INNER JOIN tblRents ON tblTenant.LeaseID=tblRents.LeaseID) INNER JOIN [Current Rent Rates] ON tblRents.RentID=[Current Rent Rates].RentID;
I have been wracking my brain trying to figure out why it is not returning more than half of the records in [Current Rent Rates], and can't seem to figure it out. Please help!!