RufussMcGee
Technical User
What I have is one table called Total with ID (Autonumber), Item, Bgn Inv (Beginning Inventory) and Purch (Purchase) and Tbl ID (Table ID) for fields.
What I am trying to do is create a summary of the total pieces for each type of Item...
For Example
Item, Bgn Inv, Purch, Tbl ID
Baseballs, 2, 10, T1
Bats, 0, 2, T1
Football, 5, 1, T2
Helmet, 10, 0, T2
my Textbox control source equals this...
=IIf([Total]![Tbl ID]="T1",[Total]![Bgn Inv]+[Total]![Purch],0)
In Stead of getting an error would like to see this on my report page...
Baseball Items 14
Football Items 16.
I like the one total table for the items for other reasons. Would like to resolve this problem but would like to know if it would be better to seperate the items to individual tables.
Thanks
What I am trying to do is create a summary of the total pieces for each type of Item...
For Example
Item, Bgn Inv, Purch, Tbl ID
Baseballs, 2, 10, T1
Bats, 0, 2, T1
Football, 5, 1, T2
Helmet, 10, 0, T2
my Textbox control source equals this...
=IIf([Total]![Tbl ID]="T1",[Total]![Bgn Inv]+[Total]![Purch],0)
In Stead of getting an error would like to see this on my report page...
Baseball Items 14
Football Items 16.
I like the one total table for the items for other reasons. Would like to resolve this problem but would like to know if it would be better to seperate the items to individual tables.
Thanks