
Signature
Regards
Jeff Boyce
www.InformationFutures.net
Microsoft Office/Access MVP
http://mvp.support.microsoft.com/
Microsoft IT Academy Program Mentor
http://microsoftitacademy.com/
I didn't try anything yet. That's the reason why I am asking for help.
Thanks
> What have you tried already?
>
[quoted text clipped - 10 lines]
> > In the Books form, I want Total Books from Table1 to be the Sum of table2
> > fields
Jeanette Cunningham - 22 May 2008 05:08 GMT
Alimbilo,
start by creating a query using table2.
Put old books in the first column and new books in the second column.
In query design, right click on the query grid and choose Totals from the
list.
In the Group By row click the drop down list and choose Sum for both fields.
Switch to datasheet view to see the totals for each column.
Save the query.
Use this query to create a form using the forn wizard.
You should end up with 2 textboxes showing the sum for old books and new
books.
To see the total you can create a calculated field on the form.
Put an unbound text box on the form.
For its rowsource put an expression something like this:
=Sum(Nz([OldBooks],0) + Nz([NewBooks],0))
This text box should show the total number of all books.
Note: Replace OldBooks and NewBooks with the real field names from your
query.
Jeanette Cunningham -- Melbourne Victoria Australia
>I didn't try anything yet. That's the reason why I am asking for help.
> Thanks
[quoted text clipped - 14 lines]
>> > table2
>> > fields
Jeff Boyce - 22 May 2008 13:44 GMT
A suggestion for future posts... if you ask for help on something you've
already tried to solve, folks may be more willing to volunteer their time to
help you.

Signature
Regards
Jeff Boyce
www.InformationFutures.net
Microsoft Office/Access MVP
http://mvp.support.microsoft.com/
Microsoft IT Academy Program Mentor
http://microsoftitacademy.com/
> I didn't try anything yet. That's the reason why I am asking for help.
> Thanks
[quoted text clipped - 13 lines]
> > > In the Books form, I want Total Books from Table1 to be the Sum of table2
> > > fields