Hi Nicole
I'm AnnaThomas and I'd happily help you with your question. In this Forum, we are Microsoft consumers just like yourself.
Here is a sample code:
Sub Hide_Rows_Based_On_Cell_Value() Dim i As Long Dim LastRow As Long LastRow = ActiveSheet.Cells(Rows.Count, 1). End(xlUp). Row For i = 1 To LastRow If Range("A" & i). Value = "No" Then Rows(i). EntireRow.Hidden = True End If Next i End Sub
I hope this helps ;-), let me know if this is contrary to what you need, I would still be helpful to answer more of your questions.
Best Regards,
AnnaThomas
Give back to the community. Help the next person with this problem by indicating whether this answer solved your problem. Click Yes or No at the bottom.