Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If InStr(1, UCase(c.Value), "REPORT") Then
The InStr function has two optional arguments... the first which is a starting position for the search (InStr is an unusual function in its having an optional *first* argument) and, if the first argument is specified, a fourth which allows you to make it perform a non case sensitive search. So, using your UCase approach as shown above, the function call could have been simplified to this... If InStr(UCase(c.Value), "REPORT") Then but using the first and fourth arguments would allow us to eliminate the UCase function call... If InStr(1, c.Value, "Report", vbTextCompare) Then where the letters in the word "Report" can be in any case (here I use the more friendly looking, at least to me, "proper" case). -- Rick (MVP - Excel) |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Delete part of a text string | Excel Worksheet Functions | |||
Function to read text file; find string; delete same before import | Excel Programming | |||
Delete text in a string marco help | Excel Programming | |||
Find part of string & delete row | Excel Programming | |||
backwards find function to find character in a string of text | Excel Programming |