Re: HELP PLEASE! Missing info on invoice
- From: "JNana" <jwrose@xxxxxxxx>
- Date: Thu, 6 Jul 2006 22:50:00 -0500
I have made a temporary "Fix" to the problem. By process of elimination, I
have determined that the problem is coming from the Contract and the SIN
tables. If I delete these tables from the SQL query, the information
displays and prints correctly. Now I have to find out how to get those back
into the report.
Can you see any reason why this would happen?
"Larry Linson" <bouncer@xxxxxxxxxxxxx> wrote in message
news:%23Ie4DtToGHA.4124@xxxxxxxxxxxxxxxxxxxxxxx
It'd be a lot easier to help you if you tell us what data you have, howyour
tables are laid out, and what your report contains. You have the advantagewould
of having the information available to you, but you have to describe it to
us.
If "Notes" are part of the detail records (line items?), then that's where
they belong. If they are at some other "level," putting them in Detail
be redundant. It's hard for me to envision a data structure that wouldsome
contain Notes that really belongs on a Page Footer, unless they really are
"overall" notes that you want handy to the reader on each page.
Larry Linson
Microsoft Access MVP
"JNana" <jwrose@xxxxxxxx> wrote in message
news:%23yyyBKRoGHA.4108@xxxxxxxxxxxxxxxxxxxxxxx
Following is the information for my Invoices and Packing Lists. For
notunknown reason, if I have more than 4 line items, line item 5 and 6 do
However,display when printed. They also do not calculate in the total.
Details].ProductID,they do display on the screen.
This has me at a standstill. The only change I have made lately is to
move
the Notes field into the detail area rather than the page footer where I
did
have it.
Thank you.
SELECT Orders.*, [Order Details].OrderDetailID, [Order
Details].UnitPrice,Products.ProductCode, [Order Details].Quantity, [Order
"Customers.CompanyName, Customers.ContactFirstName,
Customers.ContactLastName, Customers.BillingAddress, Customers.City,
Customers.StateOrProvince, Customers.PostalCode,
Customers.[Country/Region],
Customers.PhoneNumber, Customers.PONumber, Customers.ContactFirstName &
Orders.EmployeeID)"
& Customers.ContactLastName AS [Contact Name], [Shipping
Methods].ShippingMethod, Products.ProductName, [Order Details].LineItem,
[Order Details].SerialNum, Customers.ControlNum, Contracts.ContractNum,
Dealer.DealerName, [Order Details].Discount, [Order Details].Notes
FROM (Dealer RIGHT JOIN (Customers RIGHT JOIN ([Shipping Methods] RIGHT
JOIN
(Employees RIGHT JOIN Orders ON Employees.EmployeeID =
ONON
[Shipping Methods].ShippingMethodID = Orders.ShippingMethodID) ON
Customers.CustomerID = Orders.CustomerID) ON Dealer.DealerID =
Orders.DealerID) RIGHT JOIN ((Contracts INNER JOIN Products ON
Contracts.ContractID = Products.ContractID) INNER JOIN [Order Details]
[OrderProducts.ProductID = [Order Details].ProductID) ON Orders.OrderID =
Details].OrderID
WHERE (((Customers.ControlNum)=[Specify ControlNum]))
ORDER BY [Order Details].LineItem, Orders.ShipDate;
.
- References:
- HELP PLEASE! Missing info on invoice
- From: JNana
- Re: HELP PLEASE! Missing info on invoice
- From: Larry Linson
- HELP PLEASE! Missing info on invoice
- Prev by Date: Re: Sorting data in a report
- Next by Date: Re: Printing a message on a blank page of a report
- Previous by thread: Re: HELP PLEASE! Missing info on invoice
- Next by thread: #Num question
- Index(es):
Relevant Pages
|