#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 542
Default over my head

is it possible to combine these two formulas? i have a list of names going
across a row then i need to pick up every 7th cell going down the column for
each name and sum that value. is this even possible to do without having to
scroll and +? im going crazy!!

=INDEX($I$154:$CU$154,ROWS(154:$154)*6-5)

=I105+I111+I118+I125+I132+I139+I146+I153

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default over my head

need to pick up every 7th cell
=I105+I111+I118+I125+I132+I139+I146+I153


The interval isn't consistent. It starts at 6 and then goes to 7.

So, based on that try this:

=I105+SUMPRODUCT(--(MOD(ROW(I111:I170)-ROW(I111),7)=0),I111:I170)

Adjust the end of the range as needed.

--
Biff
Microsoft Excel MVP


"James" wrote in message
...
is it possible to combine these two formulas? i have a list of names going
across a row then i need to pick up every 7th cell going down the column
for
each name and sum that value. is this even possible to do without having
to
scroll and +? im going crazy!!

=INDEX($I$154:$CU$154,ROWS(154:$154)*6-5)

=I105+I111+I118+I125+I132+I139+I146+I153



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default over my head

I think it might help if you describe the setup for your worksheet. What row
are the names in? What column do the names start at (I'm guessing "I")? What
column do they end at (I'm guessing "CU"... if right, is that a fixed end
for the list of names or could it change)? Where are the sums going (I'm
guessing 154... if right, is that a fixed location for them)? Anything else
you think might help us understand your layout (as it applies to your
particular question)?

Rick

"James" wrote in message
...
is it possible to combine these two formulas? i have a list of names going
across a row then i need to pick up every 7th cell going down the column
for
each name and sum that value. is this even possible to do without having
to
scroll and +? im going crazy!!

=INDEX($I$154:$CU$154,ROWS(154:$154)*6-5)

=I105+I111+I118+I125+I132+I139+I146+I153


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 542
Default over my head

OK ... the rows are fixed and will not get any bigger, on a couple of other
pages i take raw weekly data from customer surveys and sort it by individuals
staff members. on this sheet i have rolled it up by week, each week uses
about six rows for different types scores under that individual then a blank
row and start week two, I track a total of eight weeks. all of those columns
and rows are fixed and will not change. then names are in row's 103, 109,
116, 123, 130, 137, 144, 151 you are correct with the column & sums. I hope
this helps, like i said i think im over my head on this one

"Rick Rothstein (MVP - VB)" wrote:

I think it might help if you describe the setup for your worksheet. What row
are the names in? What column do the names start at (I'm guessing "I")? What
column do they end at (I'm guessing "CU"... if right, is that a fixed end
for the list of names or could it change)? Where are the sums going (I'm
guessing 154... if right, is that a fixed location for them)? Anything else
you think might help us understand your layout (as it applies to your
particular question)?

Rick

"James" wrote in message
...
is it possible to combine these two formulas? i have a list of names going
across a row then i need to pick up every 7th cell going down the column
for
each name and sum that value. is this even possible to do without having
to
scroll and +? im going crazy!!

=INDEX($I$154:$CU$154,ROWS(154:$154)*6-5)

=I105+I111+I118+I125+I132+I139+I146+I153



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default over my head

I'm still having trouble picturing your layout. Are you saying you have the
name repeated on Rows 103, 109, 116, etc. with your different section's data
under each one?

Rick


"James" wrote in message
...
OK ... the rows are fixed and will not get any bigger, on a couple of
other
pages i take raw weekly data from customer surveys and sort it by
individuals
staff members. on this sheet i have rolled it up by week, each week uses
about six rows for different types scores under that individual then a
blank
row and start week two, I track a total of eight weeks. all of those
columns
and rows are fixed and will not change. then names are in row's 103, 109,
116, 123, 130, 137, 144, 151 you are correct with the column & sums. I
hope
this helps, like i said i think im over my head on this one

"Rick Rothstein (MVP - VB)" wrote:

I think it might help if you describe the setup for your worksheet. What
row
are the names in? What column do the names start at (I'm guessing "I")?
What
column do they end at (I'm guessing "CU"... if right, is that a fixed end
for the list of names or could it change)? Where are the sums going (I'm
guessing 154... if right, is that a fixed location for them)? Anything
else
you think might help us understand your layout (as it applies to your
particular question)?

Rick

"James" wrote in message
...
is it possible to combine these two formulas? i have a list of names
going
across a row then i need to pick up every 7th cell going down the
column
for
each name and sum that value. is this even possible to do without
having
to
scroll and +? im going crazy!!

=INDEX($I$154:$CU$154,ROWS(154:$154)*6-5)

=I105+I111+I118+I125+I132+I139+I146+I153






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default over my head

Also, why are the differences between the rows you cited (103, 109, 116,
etc.) not constant (some differ by 6 and others by 7)? Is there a rule to
govern this variability in the differences?

Rick


"Rick Rothstein (MVP - VB)" wrote in
message ...
I'm still having trouble picturing your layout. Are you saying you have
the name repeated on Rows 103, 109, 116, etc. with your different
section's data under each one?

Rick


"James" wrote in message
...
OK ... the rows are fixed and will not get any bigger, on a couple of
other
pages i take raw weekly data from customer surveys and sort it by
individuals
staff members. on this sheet i have rolled it up by week, each week uses
about six rows for different types scores under that individual then a
blank
row and start week two, I track a total of eight weeks. all of those
columns
and rows are fixed and will not change. then names are in row's 103,
109,
116, 123, 130, 137, 144, 151 you are correct with the column & sums. I
hope
this helps, like i said i think im over my head on this one

"Rick Rothstein (MVP - VB)" wrote:

I think it might help if you describe the setup for your worksheet. What
row
are the names in? What column do the names start at (I'm guessing "I")?
What
column do they end at (I'm guessing "CU"... if right, is that a fixed
end
for the list of names or could it change)? Where are the sums going (I'm
guessing 154... if right, is that a fixed location for them)? Anything
else
you think might help us understand your layout (as it applies to your
particular question)?

Rick

"James" wrote in message
...
is it possible to combine these two formulas? i have a list of names
going
across a row then i need to pick up every 7th cell going down the
column
for
each name and sum that value. is this even possible to do without
having
to
scroll and +? im going crazy!!

=INDEX($I$154:$CU$154,ROWS(154:$154)*6-5)

=I105+I111+I118+I125+I132+I139+I146+I153





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
Head to head Noob Jedi Excel Discussion (Misc queries) 3 August 31st 07 11:26 PM
In over my head with calendar 8.0 Matt the wire guy Excel Worksheet Functions 2 July 22nd 07 05:08 AM
Formula. Way over my head Hicksey Excel Discussion (Misc queries) 7 August 20th 06 12:36 PM
Cant get my head around this one mbys14932 Excel Worksheet Functions 7 June 9th 06 05:23 PM
Over my head on this one... ChuckF Excel Worksheet Functions 1 April 6th 06 10:57 PM


All times are GMT +1. The time now is 11:22 AM.

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

About Us

"It's about Microsoft Excel"