May 23, 2019 #1 arvarr MIS Nov 24, 2009 260 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 Aug 20, 2004 1,549 JP IF(sense <= 0 , #No_Replies) Upvote 0 Downvote
May 24, 2019 #3 Deniall Technical User May 15, 2011 252 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 Jan 1, 2003 4,180 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 Jul 11, 2002 1,033 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","")