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

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.

njimack

Well-known Member
Joined
Jun 17, 2005
Messages
7,772
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,191,225
Messages
5,985,366
Members
439,960
Latest member
Musa_dabban

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
Top