Macro deleting top-down or bottom-up?

katekoz

Board Regular
Joined
Jan 20, 2020
Messages
91
Office Version
  1. 2016
Platform
  1. Windows
Is this macro deleting rows from the top down, or from the bottom up? How can you tell?

For r = ThisWorkbook.Sheets("New Data Add").UsedRange.Rows.Count To 1 Step -1
If Cells(r, "F") = "Status History" Then
ThisWorkbook.Sheets("New Data Add").Rows(r).EntireRow.Delete
End If
Next
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Awesome, thanks! Is it because it goes from the last row to row 1? If you wrote it from 1 to last row, would that change the order that it runs?

Also, does Step -1 indicate stepping up, whereas Step 1 would step down?
 
Upvote 0
Is it because it goes from the last row to row 1? Yes

If you wrote it from 1 to last row, would that change the order that it runs? Yes, but it wouldn't work correctly

Also, does Step -1 indicate stepping up, whereas Step 1 would step down? Yes, but you don't need the Step if you are stepping down, only stepping up

And you could use

VBA Code:
For r = Sheets("New Data Add").UsedRange.Rows.Count To 1 Step -1
If Cells(r, "F") = "Status History" Then.Rows(r).Delete
Next r
 
Upvote 0

Forum statistics

Threads
1,215,583
Messages
6,125,664
Members
449,247
Latest member
wingedshoes

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