May 23, 2019 #1 arvarr MIS Joined Nov 24, 2009 Messages 260 Location AU Hi How do i search for specific text in a formula but not case sensitive? Example: A1 = Exclusive A2 = Ex-Gratia Using the search function in the formula, if i wish to search for Ex-Gratia, the results will also search and give results for Exclusive Thanks.
Hi How do i search for specific text in a formula but not case sensitive? Example: A1 = Exclusive A2 = Ex-Gratia Using the search function in the formula, if i wish to search for Ex-Gratia, the results will also search and give results for Exclusive Thanks.
May 23, 2019 #2 M mintjulep Technical User Joined Aug 20, 2004 Messages 1,561 Location JP IF(sense <= 0 , #No_Replies) Upvote 0 Downvote
May 24, 2019 #3 Deniall Technical User Joined May 15, 2011 Messages 255 Location Australia The question you start your post with can be answered with, for example, =IF(UPPER(Cell-Address)="HELLO", "Yep", "Nup") The statement you finish your post with makes no sense to me (nor to mintjulep apparently). Upvote 0 Downvote
The question you start your post with can be answered with, for example, =IF(UPPER(Cell-Address)="HELLO", "Yep", "Nup") The statement you finish your post with makes no sense to me (nor to mintjulep apparently).
May 24, 2019 #4 combo Technical User Joined Jan 1, 2003 Messages 4,196 Location PL For partial search, SEARCH function is not case sensitive (in opposite to FIND). combo Upvote 0 Downvote
May 24, 2019 #5 sxschech Technical User Joined Jul 11, 2002 Messages 1,034 Location US Do you mean to search for cells where the first two letters begin with Ex? For that can use Left Code: =IF(LEFT(A2,2)="Ex","Has Ex","") Upvote 0 Downvote
Do you mean to search for cells where the first two letters begin with Ex? For that can use Left Code: =IF(LEFT(A2,2)="Ex","Has Ex","")