View Full Version : Sum funtion sometimes works


RobJ
03-26-2003, 03:27 AM
Hello,

I made a report with total of ammounts on the end of the page. Now with some of these ammounts the Sum funtion works, but with one I doesn't work. What can cause this?

RobJ

suepowell
03-26-2003, 07:24 AM
Are you trying to sum a calculated value? If so this doesn't work.
You will need to put the calculation in your sum expression.

eg if you have a control called [withvat] which calculates
([value]*1.175) you can't sum it by using sum[withvat], you need to use sum([value]*1.175).

Hope this helps.

If I have got completely the wrong idea, post some more details and I will have another think.

Sue

RobJ
03-26-2003, 11:40 AM
tnx now its working!