Crystal Ver 10
Microsoft SQL Server
Guys, I really need help here, I have read through the forum and have believe that I did everything but I still could not produce the report.
2 tables with outer Join Link : Table Item and Table Acct
Report is group byItem ID and displayed in the Group footer. I use running totals in number of Item Sold and
my initial display :
ITEM ID Number of Item Sold
101 45
107 55
108 234
110 433
I then want to add another column which will use another table (Table Acct) to count the number of items taken.
I created a formula field for @Acct.ItemNo;
If isnull({Acct.ItemNo}) then 0 else {Acct.ItemNo}
The moment I create the running total field or summary field I would get the following ;
ITEM ID Number of Item Sold Number of Item Taken
107 55 3
108 234 23
110 433 12
ITEMID 45 doesn't exist in the Acct Table
I would like it to display as the following :
ITEM ID Number of Item Sold Number of Item Taken
101 45 0
107 55 3
108 234 23
110 433 12
Please advise. Thanks.
-- gyfu --
Microsoft SQL Server
Guys, I really need help here, I have read through the forum and have believe that I did everything but I still could not produce the report.
2 tables with outer Join Link : Table Item and Table Acct
Report is group byItem ID and displayed in the Group footer. I use running totals in number of Item Sold and
my initial display :
ITEM ID Number of Item Sold
101 45
107 55
108 234
110 433
I then want to add another column which will use another table (Table Acct) to count the number of items taken.
I created a formula field for @Acct.ItemNo;
If isnull({Acct.ItemNo}) then 0 else {Acct.ItemNo}
The moment I create the running total field or summary field I would get the following ;
ITEM ID Number of Item Sold Number of Item Taken
107 55 3
108 234 23
110 433 12
ITEMID 45 doesn't exist in the Acct Table
I would like it to display as the following :
ITEM ID Number of Item Sold Number of Item Taken
101 45 0
107 55 3
108 234 23
110 433 12
Please advise. Thanks.
-- gyfu --