Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How do I select all even or odd rows in Excel

In a large file, is it possible to select all even or odd rows quickly?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,118
Default How do I select all even or odd rows in Excel

I think if you describe what you utlimately want to do with those rows, we can probably suggest a solution that will work for you.
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)


"mmcclain" wrote in message ...
In a large file, is it possible to select all even or odd rows quickly?




  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,118
Default How do I select all even or odd rows in Excel

Following the direction of other posts.....

Try something like this:

A1: 1
A2: (blank)

Select A1:A2
Click and HOLD on the drag handle (black box in the lower right corner)
Drag down as far as you need (eg through cell A100).
(That will create a range of alternating numbers and blanks)

While A1:A100 is still selected....
Press [F5]..a shortcut for <edit<go to
Click [Special]
Check: Blanks
Click [OK]

The even (blank) cells with be selected.

or...
Check: Constants
Click [OK]
to select the non-blank cells.

Is that something you can work with?
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)

"Ron Coderre" wrote in message ...
I think if you describe what you utlimately want to do with those rows, we can probably suggest a solution that will work for you.
--------------------------

Regards,

Ron (XL2003, Win XP)
Microsoft MVP (Excel)


"mmcclain" wrote in message ...
In a large file, is it possible to select all even or odd rows quickly?






  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default How do I select all even or odd rows in Excel

Try this for even rows:

Sub evens()
Set r = ActiveSheet.UsedRange
nLastRow = r.Rows.Count + r.Row - 1
Set r1 = Cells(2, 1)
For i = 4 To nLastRow Step 2
Set r1 = Union(r1, Cells(i, 1))
Next
r1.EntireRow.Select
End Sub

--
Gary''s Student - gsnu200752


"mmcclain" wrote:

In a large file, is it possible to select all even or odd rows quickly?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 272
Default How do I select all even or odd rows in Excel

Maybe add an extra column with two values (0,1) for odd and even rows by
entering 0,1,0,1 down the column. Extend the selection by selecting the first
few values and double-clicking the fill handle (in the bottom right corner of
the selection).

Now you can use DataFilterAutofilter to select 0,1 to show alternate rows.

"mmcclain" wrote:

In a large file, is it possible to select all even or odd rows quickly?



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 860
Default How do I select all even or odd rows in Excel

Hi Mclain

One way,
In a blank column put 0 in the first cell and 1 in the second
Highlight both cells grab the fill handle and drag down
as far as is needed, hold ctrl and let go of the left button.

You can then use Autofilter to select 0 or 1.

HTH
Martin


"mmcclain" wrote in message
...
In a large file, is it possible to select all even or odd rows quickly?



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,646
Default How do I select all even or odd rows in Excel

My suggestion is to use Advanced filter:

Choose an empty helper column for criteria range, say Z!
Leave empty Z1, enter formula in Z2
=MOD(ROW(A2),2)=0 for even
=MOD(ROW(A2),2)=1 for odd row No!

Data/Filter/Advanced filter/Enter your used range as list range, Z1:Z2 as
criteria range/click OK!

Regards,
Stefi




€˛mmcclain€¯ ezt Ć*rta:

In a large file, is it possible to select all even or odd rows quickly?

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
Excel should let you select 2 rows, right click, and SWAP them DG_Crewdson Excel Worksheet Functions 3 August 15th 06 07:10 PM
How to select and deselect rows in Excel Gallant Excel Discussion (Misc queries) 2 July 4th 05 08:10 PM
How to select and deselect rows in Excel Gallant Excel Discussion (Misc queries) 1 July 4th 05 01:59 AM
Is there a way to randomly select rows in Excel? Samantha Excel Discussion (Misc queries) 4 May 12th 05 02:59 PM
How do I select multiple rows randomly in MS Excel? Varun Excel Discussion (Misc queries) 2 April 18th 05 08:10 AM


All times are GMT +1. The time now is 02:38 PM.

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"