B
bfrad
How I can SUM every other Column in the same row?
Jacob Skaria said:Is this what you are looking for
To sum the odd columns A,C,E....in the range A1:J1 try
=SUMPRODUCT((MOD(COLUMN(A1:J1),2)=1)*A1:J1)
and to sum the even columns in the range B,D,F ....
=SUMPRODUCT((MOD(COLUMN(A1:J1),2)=0)*A1:J1)
If this post helps click Yes