Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
? instr("enough tables and Chairs to seat 236", "chairs")
This returns 0 because I'm not using a capital "C" in chairs Is there a command to cause Excel to be non case-specific ? Thanks - Kirk |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this:
instr(LCase("enough tables and Chairs to seat 236"), "chairs") Hopes this heps. --- Per "kirkm" skrev i meddelelsen ... ? instr("enough tables and Chairs to seat 236", "chairs") This returns 0 because I'm not using a capital "C" in chairs Is there a command to cause Excel to be non case-specific ? Thanks - Kirk |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this
InStr(1, "enough tables and Chairs to seat 236", "chairs", 1) Mike "kirkm" wrote: ? instr("enough tables and Chairs to seat 236", "chairs") This returns 0 because I'm not using a capital "C" in chairs Is there a command to cause Excel to be non case-specific ? Thanks - Kirk |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Convert the text string and search string to the same case and then use Instr.
Lcase() for lower case Ucase() for upper case If this post helps click Yes --------------- Jacob Skaria "kirkm" wrote: ? instr("enough tables and Chairs to seat 236", "chairs") This returns 0 because I'm not using a capital "C" in chairs Is there a command to cause Excel to be non case-specific ? Thanks - Kirk |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thanks everyone. Figured it all out and learned something new. Cheers - Kirk |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Data Validation from a list - Always case specific? | Excel Discussion (Misc queries) | |||
Searching for case specific data | Excel Discussion (Misc queries) | |||
Searching for specific case | Excel Programming | |||
Case specific LOOKUP alternative | Excel Discussion (Misc queries) | |||
non case specific | Excel Programming |