If you are doing “Text compare”, then you should make sure that “Character case” is not selected in the “Imporantance” tab, then choose “Ignore Unimportant Differences” — that will do a case-insensitive compare.
Read moreHow do you do case insensitive comparison?
Comparing strings in a case insensitive manner means to compare them without taking care of the uppercase and lowercase letters. To perform this operation the most preferred method is to use either toUpperCase() or toLowerCase() function .
Read more