I want to multiply an entire column, by another column, and accumulate the results. Like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]b[/TD]
[TD]c[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]5[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]4[/TD]
[TD]12[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]3[/TD]
[TD]12[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]2[/TD]
[TD]10[/TD]
[/TR]
</tbody>[/TABLE]
and then sum them. the result would be the sum of all the column c = 44.
how can I do it? how can I calculate c directly? do you know a special function available for doing so?
thank you. sorry if there are some mistakes, I am not english-speaker.
[TABLE="width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]b[/TD]
[TD]c[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]5[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]4[/TD]
[TD]12[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]3[/TD]
[TD]12[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]2[/TD]
[TD]10[/TD]
[/TR]
</tbody>[/TABLE]
and then sum them. the result would be the sum of all the column c = 44.
how can I do it? how can I calculate c directly? do you know a special function available for doing so?
thank you. sorry if there are some mistakes, I am not english-speaker.