Hi Nicole B!
Try this code script
Sub HideRows() Dim i As Integer For i = 1 To ActiveSheet.UsedRange.Rows.Count If Range("A" & i). Value = "No" Then Rows(i). Hidden = True End If Next i End Sub
This code will loop through all of the rows in the worksheet and hide any rows where the value in column A is "No".
Kindly let me know, if you require additional assistance, I will be glad to help further.
Best Regards, Shakiru