I have a view with the following criteria:
- ((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.
- ((txtTask.toUpperCase().startsWith("VERIFY THIS WAS RECEIVED") || txtTask.startsWith("Follow Up")) && (Completed is null))
tt