I have looked at multiple sites that show how to do Conditional Formatting in Excel for a row based on a cell value. But all of them use equations as there formula. For example, if cell value is 5, highlight the row blue. I am trying to do it with text. If cell value is "Completed", highlight the row green.
This is the formula I was able to get from http://smallbusiness.chron.com/format-row-based-value-cell-excel-2007-40595.html
=INDIRECT("B"&ROW())>0
and modified it to
=INDIRECT("F"&ROW())="Completed"
Basically I would like the row (from column A to F) to be highlighted Green if cell value in F (whichever row)=Completed.