-
WSNYIntensity
AskWoody LoungerThanks for the help, I’m trying to absorb all this in and decipher it on my own, I’m taking a class on this but it isn’t as in-depth as this…I’m trying this problem just to test myself and push myself to learn more….I have a question….
What exactly does this do: Count To 1 Step -1
-
WSNYIntensity
AskWoody LoungerFirst, to all, I appreciate the criticism, this is my 2nd day ever typing macros….in response to Legare’s Comment;
Do
If Not (ActiveCell) = 0 Then
ActiveCell.Offset(1, 0).Select
End If
Loop Until (ActiveCell) = 0My code works, I just don’t have a variable for column b being blank.
-
WSNYIntensity
AskWoody LoungerFirst, to all, I appreciate the criticism, this is my 2nd day ever typing macros….in response to Legare’s Comment;
Do
If Not (ActiveCell) = 0 Then
ActiveCell.Offset(1, 0).Select
End If
Loop Until (ActiveCell) = 0My code works, I just don’t have a variable for column b being blank.
-
WSNYIntensity
AskWoody LoungerI was thinking she wanted to delete those without values in column M (companies with no purchases or whatever….in which case I just made a code that would work for me….) the following code would remove up to 500 instances of ‘0’. I’m still just learning, anyone who would like, please nitpick this code:
Function DeleteEmptyRows()
Dim i As Integer
Dim intRowCount As Integer
intRowCount = Range(“B1”).Select
For i = 1 To 500Do
If Not (ActiveCell) = 0 Then
ActiveCell.Offset(1, 0).Select
End If
Loop Until (ActiveCell) = 0Dim R As Long
Dim C As Range
Dim Rng As RangeIf (ActiveCell) = 0 Then
Set Rng = Selection
Else
Set Rng = ActiveSheet.UsedRange.Rows
End If
For R = Rng.Rows.Count To 1 Step -1
If (ActiveCell) = 0 Then
Rng.Rowsยฎ.EntireRow.Delete
End If
Next RNext i
End Function
-
WSNYIntensity
AskWoody LoungerI was thinking she wanted to delete those without values in column M (companies with no purchases or whatever….in which case I just made a code that would work for me….) the following code would remove up to 500 instances of ‘0’. I’m still just learning, anyone who would like, please nitpick this code:
Function DeleteEmptyRows()
Dim i As Integer
Dim intRowCount As Integer
intRowCount = Range(“B1”).Select
For i = 1 To 500Do
If Not (ActiveCell) = 0 Then
ActiveCell.Offset(1, 0).Select
End If
Loop Until (ActiveCell) = 0Dim R As Long
Dim C As Range
Dim Rng As RangeIf (ActiveCell) = 0 Then
Set Rng = Selection
Else
Set Rng = ActiveSheet.UsedRange.Rows
End If
For R = Rng.Rows.Count To 1 Step -1
If (ActiveCell) = 0 Then
Rng.Rowsยฎ.EntireRow.Delete
End If
Next RNext i
End Function
-
WSNYIntensity
AskWoody LoungerTry this – give it a second to run through….
Function DeleteLoop()
Range(“M1”).Select
Do
If Not (ActiveCell) = 0 Then
ActiveCell.Offset(1, 0).Select
End If
Loop Until (ActiveCell) = 0Call DeleteEmptyRows
End FunctionSub DeleteEmptyRows()
Dim R As Long
Dim C As Range
Dim Rng As RangeIf (ActiveCell) = 0 Then
Set Rng = Selection
Else
Set Rng = ActiveSheet.UsedRange.Rows
End If
For R = Rng.Rows.Count To 1 Step -1
If (ActiveCell) = 0 Then
Rng.Rowsยฎ.EntireRow.Delete
End If
Next RCall DeleteLoop
End Sub
-
WSNYIntensity
AskWoody LoungerTry this – give it a second to run through….
Function DeleteLoop()
Range(“M1”).Select
Do
If Not (ActiveCell) = 0 Then
ActiveCell.Offset(1, 0).Select
End If
Loop Until (ActiveCell) = 0Call DeleteEmptyRows
End FunctionSub DeleteEmptyRows()
Dim R As Long
Dim C As Range
Dim Rng As RangeIf (ActiveCell) = 0 Then
Set Rng = Selection
Else
Set Rng = ActiveSheet.UsedRange.Rows
End If
For R = Rng.Rows.Count To 1 Step -1
If (ActiveCell) = 0 Then
Rng.Rowsยฎ.EntireRow.Delete
End If
Next RCall DeleteLoop
End Sub
-
WSNYIntensity
AskWoody Lounger*hoping* That was a typo on her part…
-
WSNYIntensity
AskWoody Lounger*hoping* That was a typo on her part…
-
WSNYIntensity
AskWoody LoungerIf you change range B1 to M1 it will work, but you’d have to keep running the Macro (setting a macro button or something). I don’t know how to loop it, and haven’t the time to figure it out right now, sorry.
-
WSNYIntensity
AskWoody LoungerIf you change range B1 to M1 it will work, but you’d have to keep running the Macro (setting a macro button or something). I don’t know how to loop it, and haven’t the time to figure it out right now, sorry.
-
WSNYIntensity
AskWoody LoungerI think this is close to what you need…once you post an example I can help some more….
Sub DeleteEmptyRows()Dim R As Long
Dim C As Range
Dim Rng As RangeRange(“B1”).Select
Do
If Not (ActiveCell) = 0 Then
ActiveCell.Offset(1, 0).Select
End If
Loop Until (ActiveCell) = 0If (ActiveCell) = 0 Then
Set Rng = Selection
Else
Set Rng = ActiveSheet.UsedRange.Rows
End If
For R = Rng.Rows.Count To 1 Step -1
If (ActiveCell) = 0 Then
Rng.Rowsยฎ.EntireRow.Delete
End If
Next R -
WSNYIntensity
AskWoody LoungerI think this is close to what you need…once you post an example I can help some more….
Sub DeleteEmptyRows()Dim R As Long
Dim C As Range
Dim Rng As RangeRange(“B1”).Select
Do
If Not (ActiveCell) = 0 Then
ActiveCell.Offset(1, 0).Select
End If
Loop Until (ActiveCell) = 0If (ActiveCell) = 0 Then
Set Rng = Selection
Else
Set Rng = ActiveSheet.UsedRange.Rows
End If
For R = Rng.Rows.Count To 1 Step -1
If (ActiveCell) = 0 Then
Rng.Rowsยฎ.EntireRow.Delete
End If
Next R -
WSNYIntensity
AskWoody LoungerYou can’t customize them after opening the customize menu then right-clicking on the button?
-
WSNYIntensity
AskWoody LoungerYou can’t customize them after opening the customize menu then right-clicking on the button?
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
MS-DEFCON 2: Seven months and counting
by
Susan Bradley
11 minutes ago -
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
9 hours, 43 minutes ago -
Apple backports fixes
by
Susan Bradley
14 minutes ago -
Win 11 24H2 will not install
by
Michael1950
9 hours, 56 minutes ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
9 hours, 27 minutes ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
11 hours, 35 minutes ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
9 hours, 44 minutes ago -
Get back ” Open With” in context menus
by
CWBillow
22 hours, 36 minutes ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
1 day, 2 hours ago -
simple general stupid question
by
WSaltamirano
20 hours, 23 minutes ago -
April 2025 Office non-Security updates
by
PKCano
1 day, 13 hours ago -
Microsoft wants to hear from you
by
Will Fastie
13 hours, 30 minutes ago -
Windows 11 Insider Preview Build 22635.5160 (23H2) released to BETA
by
joep517
1 day, 16 hours ago -
Europe Seeks Alternatives to U.S. Cloud Providers
by
Alex5723
1 day, 22 hours ago -
Test post
by
Susan Bradley
2 days ago -
Used Systems to delete Temp files Gone WRONG what does this mean?
by
Deo
2 days, 2 hours ago -
SSD shuts down on its own
by
CWBillow
1 day, 17 hours ago -
OneDrive File Sharing Changes
by
David Clark
2 days, 10 hours ago -
OneDrive File Sharing Changes
by
David Clark
2 days, 12 hours ago -
Win 10 Pro 22H2 to Win 11 Pro 23H2 Conversion Guide
by
doneager
1 day, 12 hours ago -
Today is world backup day
by
Alex5723
2 days, 4 hours ago -
Windows .exe on Mint
by
Slowpoke47
9 hours, 10 minutes ago -
Reviewing your licensing options
by
Susan Bradley
10 hours, 4 minutes ago -
Apple has been analyzing your photos since September 2024
by
B. Livingston
1 day, 9 hours ago -
What Windows 11 24H2 offers beyond bugs
by
Lance Whitney
1 day, 5 hours ago -
Making sense of Settings in Windows 11
by
Simon Bisson
1 day, 6 hours ago -
Windows 11 pro fails to log in after upgrading Win 10 pro to Win 11 pro 24h2
by
ben_sitaud
2 days, 10 hours ago -
23H2 / 24H2 / Local v. Microsoft Account.
by
CWBillow
2 days, 8 hours ago -
YouTube Ad Blocker Blocker
by
bbearren
2 days, 8 hours ago -
Obscure historical facts about Windows
by
Cybertooth
2 days, 9 hours ago
Recent blog posts
- MS-DEFCON 2: Seven months and counting
- Apple backports fixes
- April 2025 Office non-Security updates
- Microsoft wants to hear from you
- Reviewing your licensing options
- Apple has been analyzing your photos since September 2024
- What Windows 11 24H2 offers beyond bugs
- Making sense of Settings in Windows 11
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.