can i get Explation of this code

bhandari

Active Member
Joined
Oct 17, 2017
Messages
359
Code:
Set rng = ("A1:A10")
For i = rng.Row + Rows.Count - 1 To rng.Row Step -1

is it mean 11-1 to 10-1?
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
This is not valid code
Code:
Set rng = ("A1:A10")

it should be
Code:
Set rng = Range("A1:A10")

This would loop through the entire worksheet starting from the last row and working to row 1
Code:
For i = rng.Row + Rows.Count - 1 To rng.Row Step -1

rng.Row is 1

Rows.Count=all the rows in the sheet (dependent on your version of Excell)

Since 1 is added then subtracted you are left with all the rows.

the step -1 tells the code to go back on rather add 1
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,168
Messages
6,129,268
Members
449,497
Latest member
The Wamp

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top