Thanks guys for your speedy responses. I reposted here as I initially thought I may have posted in the wrong forum, I do apologise for the multiple posts.
I am very new to access so I appreciate these questions may seem stupid!
I tried the first method of creating a query with the criteria of <= Date() , but I couldn't figure how to link this query to the appropriate part of my report, without affecting the other data in the report. The recordsource is linked to my table to retreive this data.
my recordsource in my report is this:
SELECT Contacts.LastName, Calls.CallDate, Calls.Subject, Calls.Notes, [FirstName] & " " & [LastName] AS [Full Name] FROM Contacts INNER JOIN Calls ON Contacts.ContactID=Calls.ContactID;
I'd like the Calls.CallDate part to link to my query to display only those entries that are <= Date() .
Please tell me if this seems like the babblings of a mad man!
edit: I have deleted my other post.