BBK
Registered User.
- Local time
- Today, 22:42
- Joined
- Jul 19, 2010
- Messages
- 71
I want to enter a location and get the total rent for that location.
My SQL is as follows:
My relationships is shown in the link below:
Problems:
When i run the query it shows blank results.
When i break it down - and just use property table it will bring up address for what i enter but as soon as i bring in my payment table my results are blank.
Any help would be greatly appreciated, thank you for reading.
My SQL is as follows:
Code:
SELECT tblProperty.Address, tblPayment.AmountDue
FROM tblProperty INNER JOIN tblPayment ON tblProperty.PropertyID = tblPayment.PropertyID
WHERE (((tblProperty.Address) Like "*" & [Enter Location:] & "*"));
My relationships is shown in the link below:
Code:
http://i33.tinypic.com/i6e5as.jpg
Problems:
When i run the query it shows blank results.
When i break it down - and just use property table it will bring up address for what i enter but as soon as i bring in my payment table my results are blank.
Any help would be greatly appreciated, thank you for reading.