For each row, evaluate Column E and then check Column G for contents

If E is Greater than 85 AND G contains "Express" I want to highlight the Cell in E.

My formula:
=IF(AND(INDIRECT("E"&ROW())>=85,(FIND("Express",INDIRECT("G"&ROW())),"TRUE","False"))

When I try this formula in Conditional format I get wonderfully descriptive window dialog: "The formula you typed contains an error"

Tried this in a regular cell and stepped through it, says there is an error and suggests THIS formula:
=IF(AND(INDIRECT("E"&ROW())>=85,(FIND("Express",INDIRECT("G"&ROW())))),"TRUE","False")

However, this returns #Value if there any value in G that does NOT contain Express
but functions correctly otherwise.

I am sure that it is just a need to set the false to a value but it returns a 1 for Express and nothing for anything else.

I tried adding "true","False" throughout the formula but have been not successful in getting a valid formula.

Any help?