koledgegirl
New Member
- Joined
- Jan 6, 2010
- Messages
- 8
This seems theoretically simple but I can't wrap my head around it:
In A1 I have a text string, ie "Hello World!"
I want to find "World" within the text string, as part of an IF(ISERROR...) formula:
= IF(ISERROR(FIND("World", A1),"","Hooray!")
Now, I want to find EITHER "Hello" or "World", the way I would do it is by nesting:
=IF(ISERROR(FIND("Hello",A1)),IF(ISERROR(FIND("World",A1)),"","Hooray!"),"Hooray!")
Now, I have a full database with various phrases in column A and a list of select words such as "Hello", "World", etc = "List". I want to search for ANY ONE OF THE words on the List in each database entry. If my List is 7 words or less, I can continue nesting, but what do I do when it's longer?
It seems that there's some sort of an array usage that needs to happen here, but I am just guessing... and of course I tried but it doesn't work.
Any thoughts???
In A1 I have a text string, ie "Hello World!"
I want to find "World" within the text string, as part of an IF(ISERROR...) formula:
= IF(ISERROR(FIND("World", A1),"","Hooray!")
Now, I want to find EITHER "Hello" or "World", the way I would do it is by nesting:
=IF(ISERROR(FIND("Hello",A1)),IF(ISERROR(FIND("World",A1)),"","Hooray!"),"Hooray!")
Now, I have a full database with various phrases in column A and a list of select words such as "Hello", "World", etc = "List". I want to search for ANY ONE OF THE words on the List in each database entry. If my List is 7 words or less, I can continue nesting, but what do I do when it's longer?
It seems that there's some sort of an array usage that needs to happen here, but I am just guessing... and of course I tried but it doesn't work.
Any thoughts???