![]() |
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?
|
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? |
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? |
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? |
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? |
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? |
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? |
All times are GMT +1. The time now is 07:12 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com