View Single Post
 
Old 04-01-2018, 06:05 AM
NoSparks NoSparks is offline Windows 7 64bit Office 2010 64bit
Excel Hobbyist
 
Join Date: Nov 2013
Location: British Columbia, Canada
Posts: 842
NoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of light
Default

In the last code posted this line
Code:
  For i = 3 To lr Step 2
tells Excel to start looping from the first row to process, in this case 3
to the last row in the column, lr, which was calculated in the preceding line of code
and to work on every second row, the Step 2 part.

Hope that helps.
Reply With Quote