sum formula help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

a1,a3,a5.......... =a1+a3+a5.............

can i use a formula that calculate every next row.

Thanks in advance,

Aarif
 
Hi Ardus,

Thanks for giving attention to my problem but when i am using this formula
getting an value error and i am not so familier with excel formulas so dont
can understand how this formula actually works, this formula looks so
complecated to me,will you help me again to resolve the problem,

thanks again for replying,

Aarif
 
My formula is based on current row number. If row id odd, add the number,
else skip it.

Do you get a #VALUE result?
 
One or more of the cells in your sum range is probably producing the #VALUE!
error, which is being mirrored (returned) by Ardus' formula.

Make sure there are no errors in your original data.
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================

Hi Ardus,

Thanks for giving attention to my problem but when i am using this formula
getting an value error and i am not so familier with excel formulas so dont
can understand how this formula actually works, this formula looks so
complecated to me,will you help me again to resolve the problem,

thanks again for replying,

Aarif
 
I am very sorry, wested your valuable time i was discribed my problem to you
people wrongly actually i want sum of every next field.

a1 a2 a3 a4
10 15 10 5 ..........

I want sum of a1 & a3 skipping a2,a4........... and also want su of a2 &
a4 skipping a1,a3

sorry again, i want a formula that can give me sum of every next field.

thanks,
Aarif
 
To sum even row numbers: ( A2,A4, A6,...)
=SUMPRODUCT(--(MOD(ROW(A1:A99),2)=01),A1:A99)

To sum odd row numbers: (A1, A3, A5, ...)
=SUMPRODUCT(--(MOD(ROW(A1:A99),2)=1),A1:A99)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top