Say I have an Excel sheet of 100 records where there are 3 columns A, B and C.
The requirement is I have to get all the rows from column C if the text in column C matches with SQL Server.
Here the text SQL Server is in different formats SQL Server,sql Server,sql server
I used the command =IF(ISERROR(FIND("SQL Server", C2)), 1, 0) to find the matching rows in column C.
If a match is found it returns 0 otherwise it returns 1.
Now the problem is it is returning 1 for strings like sql server and sql Server.
How do I make the FIND command case insensitive?