Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Selecting and copying from a list

How does one efficiently choose from one list and create another in Excell.

Example ( Choosing every 4th set of data pairs)
when like this in a spreadsheet
96 121



96.5 110




97 109



to look like this
96 121
96.5 110
97 109





--
STEVE
MS EMGMT
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Selecting and copying from a list

Hi,

I'm not clear whether these data pairs are in the same cell so we'll start
with this

=INDEX($A$1:$A$1000,ROWS($A$1:$A1)*4)

The above formula extracts the data from row 4 of column A drag down 1 row
for row 8 etc.

Mike

"shennigan" wrote:

How does one efficiently choose from one list and create another in Excell.

Example ( Choosing every 4th set of data pairs)
when like this in a spreadsheet
96 121



96.5 110




97 109



to look like this
96 121
96.5 110
97 109





--
STEVE
MS EMGMT

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default Selecting and copying from a list

something like
Sub copyevery4th()
For i = 1 To Cells(Rows.Count, "a").End(xlUp).Row Step 4
dlr = Cells(Rows.Count, "b").End(xlUp).Row + 1
Cells(i, "a").Copy Cells(dlr, "b")
Next i
End Sub



--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"shennigan" wrote in message
...
How does one efficiently choose from one list and create another in
Excell.

Example ( Choosing every 4th set of data pairs)
when like this in a spreadsheet
96 121



96.5 110




97 109



to look like this
96 121
96.5 110
97 109





--
STEVE
MS EMGMT


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
Copying cell formatting when selecting from a list denspec Excel Discussion (Misc queries) 0 February 14th 07 01:57 PM
Selecting from a list Duncs Excel Discussion (Misc queries) 4 August 23rd 06 05:25 PM
Selecting and copying data from mutiple worksheets Dirk_Bob Excel Discussion (Misc queries) 0 February 13th 06 08:41 PM
selecting data from a list box LilyDog7 Excel Discussion (Misc queries) 3 October 12th 05 02:41 PM
How to create list on another tab by selecting qty from big list? Rob Excel Worksheet Functions 1 September 29th 05 05:33 PM


All times are GMT +1. The time now is 09:57 PM.

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"