It would certainly work, but "those in charge" want to be able to quickly scan all of the totals without having to click on individual records. Also, all of the totals will be rolling up into another reporting method.
I'm sure it's a lot harder than your idea, but I need to go the route of adding each row from each table. If you could point me in the right direction with that, it would be greatly appreciated.
Thanks.
Sorry it took so long to get back to you, I had to get some help myself!
You will need to use a formula like this where field1 is in table 1 and
field4 is in table2. Put this in the Totals table in the field that
represents field1+field4.
/my:myFields/my:group1/my:group2[count(current()/../preceding-sibling::*) +
1]/my:field1 +
/my:myFields/my:group3/my:group4[count(current()/../preceding-sibling::*) +
1]/my:field4
This will add the 1st row of each table and the 2nd row, etc.
Will that work for you?

Signature
This posting is provided "AS IS" with no warranties, and confers no rights.
Sample code subject to http://www.microsoft.com/info/cpyright.htm
Do not send email to this alias. It is for newsgroup only
> It would certainly work, but "those in charge" want to be able to quickly scan all of the totals without having to click on individual records. Also, all of the totals will be rolling up into another reporting method.
>
[quoted text clipped - 20 lines]
> > from table1 and row 1 from table2, etc, but the Master / Detail would
> > be much simpler.
JR - 12 Aug 2005 17:35 GMT
I'm hoping it will - but I'm running into an error in the formula now. I've changed it to this:
/my:Custom/my:ProjectCosting/my:OperationalCosting/my:CostItems/my:CostItem[count(current()/../preceding-sibling::*) + 1]/my:ApprovedBudget + ....
to match my control structure, but am getting the following error message:
"/my:Custom/my:ProjectCosting/my:OperationalCosting/my:CostItems/my:CostItem/my:ApprovedBudget" does not point to a valid location path of a field or group.
This is my data source control structure
my:Custom (group)
-ProjectCosting (group)
--OperationalCosting (group)
---CostItems (group)
----CostItem (repeating group)
-----ApprovedBudget (field)
JR - 15 Aug 2005 15:15 GMT
Thanks again for all your help. Not sure why it wasn't working before, but it is now. Weird.
> Sorry it took so long to get back to you, I had to get some help
> myself!
[quoted text clipped - 10 lines]
> This will add the 1st row of each table and the 2nd row, etc. Will
> that work for you?