Skip to main content
 

How to select every other or nth row in Excel?

Author: Xiaoyang Last Modified: 2024-09-03

When we use a worksheet, sometimes, we need to select the every other or nth row of the sheet for formatting, deleting or copying purpose. You can select them manually, but if there are hundreds of rows, this method is not a good choice. Here are some tricks to help you.

Select every other or nth row with VBA

Select every other or nth row with Kutools for Excelgood idea3


Select every other or nth row with VBA

In this example, I will select one row with two intervals. With VBA code, I can finish it as follows:

1. Highlight the range that you want to select every other or nth row.

2.Click Developer > Visual Basic, a new Microsoft Visual Basic for applications window will be displayed, click Insert > Module, and input the following code into the Module:

Sub EveryOtherRow()
Dim rng As Range
Dim InputRng As Range
Dim OutRng As Range
Dim xInterval As Integer
xTitleId = "KutoolsforExcel"
Set InputRng = Application.Selection
Set InputRng = Application.InputBox("Range :", xTitleId, InputRng.Address, Type:=8)
xInterval = Application.InputBox("Enter row interval", xTitleId, Type:=1)
For i = 1 To InputRng.Rows.Count Step xInterval + 1
    Set rng = InputRng.Cells(i, 1)
    If OutRng Is Nothing Then
        Set OutRng = rng
    Else
        Set OutRng = Application.Union(OutRng, rng)
    End If
Next
OutRng.EntireRow.Select
End Sub

3.Then click run button button to run the code. And a dialog pops up for you to select a range. See screenshot:

vba code to select the data range

4. Click OK, and in this case, I input 3 in the another pop out dialog as the interval row. See screenshot
enter the interval row number

5. Click OK, and the every third row has been selected. See screenshot:
the specidied rows are selected

You can change the interval as you need in the second KutoolsforExcel dialog.


Select every other or nth row with Kutools for Excel

With VBA code, you can only select one row with specified intervals, if you need to select two, three or other rows with specified intervals, the Kutools for Excel can help you solve this problem easily and conveniently.

Kutools for Excel offers over 300 advanced features to streamline complex tasks, boosting creativity and efficiency. Enhanced with AI capabilities, Kutools automates tasks with precision, making data management effortless. Detailed information of Kutools for Excel...         Free trial...

After free installing Kutools for Excel, please do as below:

1. Click Kutools > Select > Select Interval Rows & Columns…,see screenshot:

click Select Interval Rows & Columns feature of kutools

2. In the  Select Interval Rows & Columns dialog box,  clickselect button button to select the range you need, choose Rows or Columns from Select section, and specify the number you want in the Interval of input box and Rows input box. See screenshot:

set options in the dialog box

specified rows are selected

Notes:
1. If you need to select every other row in the selection, please enter 2 in the Intervals of Input box and 1 in the Rows input box.

2. If you want to select the entire row that you need, you can check Select entire rows option.
check Select entire rows option to select entire rows


Related articles:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!