BlueJacket
Registered User.
- Local time
- Today, 07:57
- Joined
- Jan 11, 2017
- Messages
- 92
I can't edit this decently simple query and I don't understand why. Can you just not edit a query that has a subquery in it? Is it as simple as that? According to http://allenbrowne.com/ser-61.html, as long as the subquery isn't in the SELECT clause, then everything should be good.
Is it worth mentioning that the field in the subquery is a calculated field?
Thanks in advance.
Code:
SELECT tblPropertyDetails.PropertyID, tblPropertyDetails.BarmentSentDate, tblPropertyDetails.BarmentDeadline, DateAdd("yyyy",1,[tblPropertyDetails]![Sale]) AS RipenDate
FROM tblPropertyDetails LEFT JOIN qryClosed ON tblPropertyDetails.PropertyID = qryClosed.PropertyID
WHERE (((qryClosed.Closed)="0"));
Is it worth mentioning that the field in the subquery is a calculated field?
Thanks in advance.
Last edited: