Hi All
Would like a a Macro that selects every tenth row in a worksheet starting from the 5th row. So, the selected rows would be 5,15,25,35 etc
Thanking you in advance
Floyd
Hi All
Would like a a Macro that selects every tenth row in a worksheet starting from the 5th row. So, the selected rows would be 5,15,25,35 etc
Thanking you in advance
Floyd
![]()
Sub Macro1() For j = 5 To 45 Step 10 ' st = st & "A" & j & "," Next st = st & "A" & j Range(st).Select End Sub
If solved remember to mark Thread as solved
Hi Patel
Thanks for the response, but the Macro only selects cells in Column A, need it to select the entire row.
![]()
Sub Macro1() For j = 5 To 45 Step 10 ' st = st & "A" & j & "," Next st = st & "A" & j Range(st).EntireRow.Select End Sub
Thanks Patel, working well.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks