I do have the properties set to display all fields.
Here is the SQL view for the 1st query:
SELECT CUSTOMER.[Account Number], CUSTOMER.[Borrower Last Name], Disbursements.[LIP or Savings Account], Disbursements.[Check Date], Disbursements.[Amount Disbursed], CUSTOMER.[% Complete], CUSTOMER.Comments
FROM CUSTOMER RIGHT JOIN Disbursements ON CUSTOMER.[Account Number] = Disbursements.[Account Number]
WHERE (((Disbursements.[LIP or Savings Account])="lip" Or (Disbursements.[LIP or Savings Account])="savings") AND ((CUSTOMER.[% Complete])<100));
This is the SQL View for the query running off of the 1st query:
SELECT [Inactivity Rpt Query].[Account Number], [Inactivity Rpt Query].[Borrower Last Name], [Inactivity Rpt Query].[LIP or Savings Account], Max([Inactivity Rpt Query]![Check Date]) AS [Max Ck Dte], [Inactivity Rpt Query].[Amount Disbursed], [Inactivity Rpt Query].[% Complete], [Inactivity Rpt Query].Comments, *
FROM [Inactivity Rpt Query];
Hopefully you can see something that will solve my dilema. The logic seems so simple, but sometimes that can be the most difficult.
Thanks in advance
![[bigglasses] [bigglasses] [bigglasses]](/data/assets/smilies/bigglasses.gif)