the Sub Form shows all the records in that Box, but creates the Same box over and over to the amount of Records from the Items plus showing all the records on each.
I do not understand about a 'box'. Please post how it looks and how you want it to be.
Post the SQL of the subreport query/Record Source statement.
The Sub Form looks like a Box... so when you read box, think Sub Form.
I couldn't right click in Field list on Report for the Sub Report, but I got the Reports SQL, which I hope has the info you want, if not, Let me know how to get it.
SELECT Customers.CustomerID, Customers.FirstName, Customers.LastName, Customers.Company, Enquiry.JobID, Enquiry.PaymentType, Enquiry.Cash, Enquiry.Card, [Item/Service].ItemCode, [Item/Service].Hours, [Item/Service].TotalNoGST, [Item/Service].GST, Enquiry.Discount,
[Item/Service].Total, [Item/Service].Item, Enquiry.DateMade, Enquiry.DateDone
FROM (Customers INNER JOIN Enquiry ON Customers.[CustomerID] = Enquiry.[CustID]) INNER JOIN [Item/Service] ON Enquiry.[JobID] = [Item/Service].[JobID];
So I have my Main Form with a lot of the info in that SQL, Then in the Detail Area I made A Sub Form/Report and used the Wizard to select Some fields from My Items Table. I fixed it all up in design View how I wanted it, I resized the Sub Form to fit around
the Texboxes in the Details Area of the Sub Form as it only shows 1 Textbox for each field, when I press Report, Layout Or Print View, I get 5 pages since my Sub Form has 8 Records. pages 2-5 stack up repeats of the Sub Form. The Sub Form is doing what I want
in showing all the Records in it, But I ONLY want 1 Sub Form to Show all records inside and Grow if there are multiple Records, not a Sub Form for each Record. I was thinking I might need a OnLoad Macro for the Sub Form to show only once but show all records
inside it.
Thanks heaps
Any more questions, don't hesitate to ask...