#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Aarif
 
Posts: n/a
Default sum formula help

Hi,

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

can i use a formula that calculate every next row.

Thanks in advance,

Aarif


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ardus Petus
 
Posts: n/a
Default sum formula help

=SUMPRODUCT(--(MOD(ROW(A1:A99),2)=1),A1:A99)

HTH
--
AP

"Aarif" a écrit dans le message de
...
Hi,

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

can i use a formula that calculate every next row.

Thanks in advance,

Aarif




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Aarif
 
Posts: n/a
Default sum formula help

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

"Ardus Petus" wrote:

=SUMPRODUCT(--(MOD(ROW(A1:A99),2)=1),A1:A99)

HTH
--
AP

"Aarif" a écrit dans le message de
...
Hi,

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

can i use a formula that calculate every next row.

Thanks in advance,

Aarif





  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ardus Petus
 
Posts: n/a
Default sum formula help

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

Do you get a #VALUE result?

--
AP

"Aarif" a écrit dans le message de
...
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

"Ardus Petus" wrote:

=SUMPRODUCT(--(MOD(ROW(A1:A99),2)=1),A1:A99)

HTH
--
AP

"Aarif" a écrit dans le message de
...
Hi,

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

can i use a formula that calculate every next row.

Thanks in advance,

Aarif







  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
RagDyeR
 
Posts: n/a
Default sum formula help

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!
================================================== ===

"Aarif" wrote in message
...
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

"Ardus Petus" wrote:

=SUMPRODUCT(--(MOD(ROW(A1:A99),2)=1),A1:A99)

HTH
--
AP

"Aarif" a écrit dans le message de
...
Hi,

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

can i use a formula that calculate every next row.

Thanks in advance,

Aarif









  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Aarif
 
Posts: n/a
Default sum formula help

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
"RagDyeR" wrote:

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!
================================================== ===

"Aarif" wrote in message
...
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

"Ardus Petus" wrote:

=SUMPRODUCT(--(MOD(ROW(A1:A99),2)=1),A1:A99)

HTH
--
AP

"Aarif" a écrit dans le message de
...
Hi,

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

can i use a formula that calculate every next row.

Thanks in advance,

Aarif








  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ardus Petus
 
Posts: n/a
Default sum formula help

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)
--
HTH
--
AP

"Aarif" a écrit dans le message de
...
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
"RagDyeR" wrote:

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!
================================================== ===

"Aarif" wrote in message
...
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

"Ardus Petus" wrote:

=SUMPRODUCT(--(MOD(ROW(A1:A99),2)=1),A1:A99)

HTH
--
AP

"Aarif" a écrit dans le message de
...
Hi,

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

can i use a formula that calculate every next row.

Thanks in advance,

Aarif










Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Dynamic Range with unused formula messing up x axis on dynamic graph [email protected] Charts and Charting in Excel 2 February 2nd 06 08:02 PM
2 Nesting questions Starchaser Excel Worksheet Functions 7 January 20th 06 06:53 PM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


All times are GMT +1. The time now is 02:01 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"