How to select every other or nth row in Excel?
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 Excel
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 button to run the code. And a dialog pops up for you to select a range. See screenshot:
4. Click OK, and in this case, I input 3 in the another pop out dialog as the interval row. See screenshot
5. Click OK, and the every third row has been selected. See screenshot:
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, with more than 300 handy functions, makes your jobs more easier. | ||
After free installing Kutools for Excel, please do as below:
1. Click Kutools > Select > Select Interval Rows & Columns…,see screenshot:
2. In the Select Interval Rows & Columns dialog box, click 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:
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.
Demo
Shade every other row or nth row with Kutools for Excel
If you want to shade ranges in every other row so that the data looks more outstanding as below screenshot shown, you can apply Kutools for Excel’s Alternate Row/Column Shading function to quickly handle the job.
![]() |
![]() |
![]() |
After free installing Kutools for Excel, please do as below:
1. Select the range of cells you want to interval shade, click Kutools > Format > Alternate Row/Column Shading.
2. In the Alternate Row/Column Shading dialog, do as these:
1)Select the rows or columns you want to shade;
2)Choose Conditional formatting or standard formatting as you need;
3)Specify shading interval;
4)Choose a shading color.
3. Click Ok. Now the range has been shaded in every nth row.
If you want to remove the shading, check Remove existing alternate row shading option in Alternate Row/Column Shading dialog.
Demo
Related articles:
Best Office Productivity Tools
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!












