on 2016 Apr 27 4:16 PM
Hello,
I am trying to calculate the average of a formula but it is giving me an error that the field can not be summerized how can I get this to work.
Thanks.
Hi Hawazin,
If the formula uses Summary functions or Print Time functions, you cannot use the 'Insert Summary' option to create an Average.
You'd need a manual calculation formula that looks something like this:
EvaluateAfter({@Formula you need to average})
shared numbervar avg;
shared numbervar cnt := cnt + 1;
avg := avg + {@Formula you need to average};
Place this on the same section as the other formula.
Next, create a formula to display the average and place this on the footer:
shared numbervar avg;
shared numbervar cnt;
avg/cnt;
-Abhilash
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
68 | |
8 | |
8 | |
7 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.