I have 5 different forumula's in the detail section of my report and then I summarize each one of them and display the summary of each in my group header. Summary is basically the count of records it finds for each formula.
Now, I have to add another formula(lets say formula 6) in my group header that will be the sum of 3 of the summarized formulas in my group header. So, for example this is how my group header looks like
Formula1-- Formula2 --Formula3 --Formula4 --Formula5
10---------------5-------------5------------20-----------6
Formula 6 should be the sum of formula 1 + formula 3 + formula 5, which will be 21. Right now this is what I have for formula 6
{@Formula1} + {@Formula3} + {@Formula5}
But it is not giving me the right result. It shows 4 instead of 21. I was wondering if this is due to the order of evaluation. Would appreciate any help.
Thanks
Now, I have to add another formula(lets say formula 6) in my group header that will be the sum of 3 of the summarized formulas in my group header. So, for example this is how my group header looks like
Formula1-- Formula2 --Formula3 --Formula4 --Formula5
10---------------5-------------5------------20-----------6
Formula 6 should be the sum of formula 1 + formula 3 + formula 5, which will be 21. Right now this is what I have for formula 6
{@Formula1} + {@Formula3} + {@Formula5}
But it is not giving me the right result. It shows 4 instead of 21. I was wondering if this is due to the order of evaluation. Would appreciate any help.
Thanks