I'm working with MS Excel 2010 VBA.i want to write a code for highlighting the rows which contains the keyword canada i have written the following code,
       Cells.Find(What:="Canada", After:=ActiveCell, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows,         SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Activate
      ActiveCell.EntireRow.Select
      With Selection.Font
             .Color = -16776961
             .TintAndShade = 0
      End With
i want to use the code in a loop to highlight all the rows which contains the keyword "canada".How can i do it using VBA?
 
     
    