Hide all of "X" in column A by multi condition in B?

aaron84

New Member
Joined
Oct 22, 2014
Messages
17
Hello Turbo Noob here, I have a sheet that has 70k rows. I have multiple rows of the same number in column A together sorted in ascending. Row 1-20 will all be number 50 in A. And numbers 1-7 randomly in column D for rows 1-20. What i'm hoping to achieve is, if column d shows 1-5 then hide all the the associated number in column A. if D only shows 6 or 7 then leave. Is this possible as sorting through the whole thing manually would take eternity
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Code:
Public Sub HideRows()
Range("A2").Select
While ActiveCell.Value <> ""
      Select Case ActiveCell.Offset(0, 3).Value   'col D
         Case 1, 2, 3, 4, 5
             Rows(ActiveCell.Row & ":" & ActiveCell.Row).EntireRow.Hidden = True
      End Select
   
   ActiveCell.Offset(1, 0).Select   'next row
Wend
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,988
Members
452,373
Latest member
TimReeks

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