Need to add additional criteria to macro to hide row based on text in cell

jmpatrick

Active Member
Joined
Aug 17, 2016
Messages
477
Office Version
  1. 365
Platform
  1. Windows
I have a macro that works nicely to hide rows based on the content of a single column. Works great, but I can't figure out how to add additional criteria.

Here's the relevant part of the macro:

VBA Code:
StartRow = 5
EndRow = 1000
ColNum = 3
For i = StartRow To EndRow
If Cells(i, ColNum).Value <> "" Then
Cells(i, ColNum).EntireRow.Hidden = False
Else
Cells(i, ColNum).EntireRow.Hidden = True
End If
Next i

This hides all rows from 5 to 1000 if there is nothing in column 3. I'd like to specify additional criteria which would also hide the row, "Saturday" "Sunday" "New Years Day", etc.
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
I figured it out!

VBA Code:
If Cells(i, ColNum).Value = "" Or Cells(i, ColNum).Value = "Saturday" Or Cells(i, ColNum).Value = "Sunday" Then
 
Upvote 0
Solution

Forum statistics

Threads
1,214,979
Messages
6,122,557
Members
449,088
Latest member
davidcom

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