Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
given two sets of numbers which have been interleaved/alternated in (e.g) a
column, how can i specify a range that returns every other cell? thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
insert a helper column with the range 1,2,1,2,1,2,1,2,1,2,
all the way down sort the two columns by the second column greetings from NZ Bill K " wrote in message ... given two sets of numbers which have been interleaved/alternated in (e.g) a column, how can i specify a range that returns every other cell? thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
ok, let me see if i can figure out how to get the chart wizard to swallow
that w/o inserting zeroes for the skipped cells. thanks! hwn "Bill Kuunders" wrote: insert a helper column with the range 1,2,1,2,1,2,1,2,1,2, all the way down sort the two columns by the second column greetings from NZ Bill K " wrote in message ... given two sets of numbers which have been interleaved/alternated in (e.g) a column, how can i specify a range that returns every other cell? thanks. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For even numbered rows, try this:
=INDEX(A:A,2*ROWS($1:1)) And copy down as needed. For odd numbered rows, try this: =INDEX(A:A,2*ROWS($1:1)-1) And copy down as needed. -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- " wrote in message ... given two sets of numbers which have been interleaved/alternated in (e.g) a column, how can i specify a range that returns every other cell? thanks. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming the column is A
In B1 enter =OFFSET($A$1,2*ROW() -1,0) Copy down Column B to return every second cell in Column A Gord Dibben MS Excel MVP On Thu, 12 Oct 2006 12:25:02 -0700, wrote: given two sets of numbers which have been interleaved/alternated in (e.g) a column, how can i specify a range that returns every other cell? thanks. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
cheers gang.
all the solutions seem to revolve around adding helper columns (either the alternating even/odd indicator or to hold the extracted values). i was hoping for something i could feed as series definitions to the chart wizard w/o disturbing the original spreadsheet. a range with parameters <begin <end <row_step <col_step would be ideal. anybody see the excel suggestion box anywhere? ;-) thanks again. hwn " wrote: given two sets of numbers which have been interleaved/alternated in (e.g) a column, how can i specify a range that returns every other cell? thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
First row in Selection range (first index of a cell) EXCEL VBA | Excel Worksheet Functions | |||
need to Copy or Move to active cell from specified range | Excel Discussion (Misc queries) | |||
Pasting Word table cell with paragraph markers into single Excel c | Excel Discussion (Misc queries) | |||
Excel Range Value issue (Excel 97 Vs Excel 2003) | Excel Discussion (Misc queries) | |||
Excel: How to return count for each cell within date range criter. | Excel Worksheet Functions |