I wish for this macro to hide every rows whch contains "info" in column B, but when I push the button associated with it, all rows becomes hidden. Any1 can help me with this?
ActiveSheet.Columns("B").Select
Selection.AutoFilter Field:=1, Criteria1:="info"
Selection.EntireRow.Hidden = True
Bookmarks