Group subtotals need to use report totals

G

Guest

Hello

I have a report that is grouped on Security Maturity Dates. I have to caclulate the percentage of total portfolio value maturing on every date. So, I need to divide the subtotal "Sum([PrincipalDue])" appearing in the group fooeter of Security Maturity date by the "Sum([PrincipalDue])" appearing in the report footer

This, of course, does not work

Does anyone know how I can get it to work

Much thanks in advance
Nick
 
D

Duane Hookom

Try add a text box to the Report Header
Name: txtRptTotal
Control Source: =Sum([PrincipalDue])

Then in your group footer try
Control Source: =Sum([PrincipalDue])/txtRptTotal

--
Duane Hookom
MS Access MVP
--

NickM said:
Hello,

I have a report that is grouped on Security Maturity Dates. I have to
caclulate the percentage of total portfolio value maturing on every date.
So, I need to divide the subtotal "Sum([PrincipalDue])" appearing in the
group fooeter of Security Maturity date by the "Sum([PrincipalDue])"
appearing in the report footer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top