Wayne Jordan
Registered User.
- Local time
- Today, 14:24
- Joined
- Feb 14, 2013
- Messages
- 14
I have a problem that involves null values that I do not know how to solve.
I have the following tables:
tblOrderDetailsKeyItemIdOrder QtyPO#001A204001002B204001003C304001
tblTransactionsKeyTransDateItemIDReceivedPO#0011/1/2014A1040010021/2/2014B2040010031/3/2014A54001
I also have a table that list the items and on that table the column ItemID is the key.
I want to create a query that will list all items ordered on a PO# and how many have been received so far. With that I will calculate the outstanding qty. I want to see:
qryOutstandingPOPO#Item IDOrder QtyReceivedOutstanding4001A201554001B202004001C30030
But all I see is this:
qryOutstandingPOPO#Item IDOrder QtyReceivedOutstanding4001A201554001B20200
It is missing item C because I have not received any yet so there are no records in the Transactions table for it to select. I don’t know how to fix it. I believe the answer has something to do with Nz but I can’t figure it out. :banghead:I don’t know VBA so I do all of my queries in Query Design. The truth is I know enough to get myself in trouble.
Thank you very much to anyone who can help.
I have the following tables:
tblOrderDetailsKeyItemIdOrder QtyPO#001A204001002B204001003C304001
tblTransactionsKeyTransDateItemIDReceivedPO#0011/1/2014A1040010021/2/2014B2040010031/3/2014A54001
I also have a table that list the items and on that table the column ItemID is the key.
I want to create a query that will list all items ordered on a PO# and how many have been received so far. With that I will calculate the outstanding qty. I want to see:
qryOutstandingPOPO#Item IDOrder QtyReceivedOutstanding4001A201554001B202004001C30030
But all I see is this:
qryOutstandingPOPO#Item IDOrder QtyReceivedOutstanding4001A201554001B20200
It is missing item C because I have not received any yet so there are no records in the Transactions table for it to select. I don’t know how to fix it. I believe the answer has something to do with Nz but I can’t figure it out. :banghead:I don’t know VBA so I do all of my queries in Query Design. The truth is I know enough to get myself in trouble.
Thank you very much to anyone who can help.