I have 2 ODBC databases that are linked via a common field (call_number). The first database(callheader) contains the header information for help desk calls. The second database (call_activities) contains the various activities that are associated with the header record. Each call can have several activities with different dates. I can easily create a query (in Crystal Reports 7)that will tell me the activities within a date range. For example, a query from(call_activities) showing all activities for all calls between july 1 - july 7. <br>If a call originated before july 1, this query will not show the activities prior to july 1. To get all of the activities I change the select formula to pull from the header database (callheader) the particular calls that I want to see. What I am doing is a 2 step process to get my final report. In a nutshell, what I want is the following:<br><br>If a call has activities in the date range specified, then give me all the activities for the call. All in 1 pass. <br><br>How should a selection formula look in order to achieve the above statement.<br>Thanks in advance,