anonymous
2012-10-06 19:23:05 UTC
i want to calculate and display simultaneously the sum of all these columns in each row.
______col 1 2 3 4 5 6 7
___row 1 x x x x x x display sum of X
_______2 y y y y y y display sum of y
_______3
i think its
for rows 1 to 2
for cols 1 to 6
sum = sum + sum
next cols
next rows
where would i insert vb to display sum of each row ?
thankyou