View criteria. String case.

View criteria. String case.

I have a view with the following criteria:

    
  1.  ((txtTask.startsWith("Verify this was received") || txtTask.startsWith("Follow Up")) && (Completed is null))
But if the case is not a match then the records are not displayed.
For example, I'm looking for "Verify" in the string but if the records text is "verify" then it will not find the record.
I tried this but it would not let me save the criteria.
        
  1.  ((txtTask.toUpperCase().startsWith("VERIFY THIS WAS RECEIVED") || txtTask.startsWith("Follow Up")) && (Completed is null))

How can I do this?





tt