I have a report that has two fields, proposed capex and the other approved capex. In my report I have summed this to give me total capex. I needed to have a group total for both columns as well as the calculated 'Total' column. I could sum two fields at group level without any problem but I could not sum the previously calculated 'Total' field. I tried using the Total text box name 'TTotal' to sum the total column but to no avail. I managed to get around this by using the following formula but I don't suppose this is the right way.
=Sum(IIf(NZ([PropCapex])+NZ([APpCapex])=0,Null,NZ([PropCapex])+NZ([APpCapex])))
Could someone shed light on how to refer to calculated controls when you want to calculate these again.
Regards