Dear knowledgeable EF users,
I am currently able to find and replace formatting of cells using the FindFormat function. However, I need the output of this function to hide rows. Does anybody here have a solution?
Private Sub CBYes_Click()
Application.FindFormat.Clear
Application.FindFormat.Interior.Color = RGB(255, 255, 0)
'Application.ReplaceFormat.Interior.ColorIndex = 2
Application.ReplaceFormat.Interior.ColorIndex = xlColorIndexNone
MAIN.Cells.Replace What:="", Replacement:="", SearchFormat:=True, ReplaceFormat:=True
Application.FindFormat.Clear
Application.FindFormat.Font.Strikethrough = True
Application.ActiveCell.EntireRow.Hidden = True
'Application.ActiveCell.MergeArea.EntireRow.Hidden = True
Application.ReplaceFormat.Font.Strikethrough = False
MAIN.Cells.Replace What:="", Replacement:="", SearchFormat:=True, ReplaceFormat:=True
Unload Me
End Sub
Bookmarks