Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT tblClients.ClientID, tblClients.TitleID, tblClients.Forename, tblClients.Surname, qryDealHistory.OfferID, qryDealHistory.ChequeAmount
FROM tblClients INNER JOIN qryDealHistory ON tblClients.ClientID = qryDealHistory.ClientID
WHERE (((qryDealHistory.OfferID) In (1,2,3)))
GROUP BY tblClients.ClientID, tblClients.TitleID, tblClients.Forename, tblClients.Surname, qryDealHistory.OfferID, qryDealHistory.ChequeAmount
HAVING COUNT(*) = 3;