cancel
Showing results for 
Search instead for 
Did you mean: 

Crystal Report this field can not be summarized error on forumla field

Former Member
0 Kudos

hi,

I create one Formula for calculate the amount

For example -

SR.NORateQtyAmount
11010100
25525
TOTAL15 125

here i calculate Amount using crystal report formula field i.e - ( Rate * Qty)

i want to Sum of Amount Column like SUM(@Amount);

they show this field can not be Summarized error.

please give me solution for solving this problem

thanks!!!

Rly fast

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Create a new Formula:(example : SumCal)

Shared numbervar summz :=0;

And place it in Report Header;

New Formula:

Shared numbervar summz;

summz := summz + @amount;


And place it in details next to where the formula @Amount is placed


Third Formula:

{@SumCal}

And place it in the footer. (This is the summary)

abhilash_kumar
Active Contributor
0 Kudos

Hi Kiran,

Are 'Rate' and 'Qty' fields formulas as well? If yes, what's the formula?

-Abhilash