Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm trying to write a fomula that will look in column A for any text that
contains the text "LOA". If TRUE, I want to apply some conditional formatting to a range of cells. I tried the following formula when A4 = "loa" and it still comes up TRUE. Any suggestions? =ISNUMBER(SEARCH(UPPER("LOA"),A4)) |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=ISNUMBER(FIND("LOA",UPPER(A4),1)) - AG |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
GoBucks wrote:
I'm trying to write a fomula that will look in column A for any text that contains the text "LOA". If TRUE, I want to apply some conditional formatting to a range of cells. I tried the following formula when A4 = "loa" and it still comes up TRUE. Any suggestions? =ISNUMBER(SEARCH(UPPER("LOA"),A4)) SEARCH is not case sensitive. FIND is: =ISNUMBER(FIND("LOA",A4)) |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi GoBucks,
Because FIND is case sensitive, that is precisely why I have used: =ISNUMBER(FIND("LOA",UPPER(A4),1)) It does not matter whether A4 contains loa or Loa of loA or lOa ... upper of that will always make is "LOA", which is why you will be able to find "LOA" in UPPER(A4). As long as loa exists in cell A4 in some form the FIND("LOA",UPPER(A4),1) will always return a number. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you both! worked great.
"Glenn" wrote: GoBucks wrote: I'm trying to write a fomula that will look in column A for any text that contains the text "LOA". If TRUE, I want to apply some conditional formatting to a range of cells. I tried the following formula when A4 = "loa" and it still comes up TRUE. Any suggestions? =ISNUMBER(SEARCH(UPPER("LOA"),A4)) SEARCH is not case sensitive. FIND is: =ISNUMBER(FIND("LOA",A4)) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Possible to distinguish uppercase from lowercase text? | Excel Discussion (Misc queries) | |||
making all text into uppercase | Excel Discussion (Misc queries) | |||
Search on uppercase text | Excel Discussion (Misc queries) | |||
Identify text in uppercase | Excel Worksheet Functions | |||
Automatically change text to uppercase | Excel Worksheet Functions |