Loop through to hide rows

mhenk

Well-known Member
Joined
Jun 13, 2005
Messages
591
I'd like to have a macro that, on the press of a button, loops through my worksheet and hides each row in which:

Column D = 0
Column A is NOT blank.

I'm having some troubles, obviously.

Thanks!
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Hard to code without seeing the full layout of your data. I've assumed there's an entry in every row in Column B

Code:
Sub Hide_Rows()

Dim End_Row As Long, n As Long

With ActiveSheet

End_Row = .Range("A" & Rows.Count).End(xlUp).Row

For n = 2 to End_Row

If .Cells(n,1) <>"" And .Cells(n,4) = 0 then .Cells.EntireRow.Hidden = True

Next n

End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,213,549
Messages
6,114,264
Members
448,558
Latest member
aivin

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