Hoping someone here can help.
I'm working with a data set that includes a series of text strings I need to evaluate in order to "recode" the strings into a normalized list I can write formulas off of. For example:
I know how to write formulas to find a particular string if I wanted to rewrite the formula for each line:
What I can't figure out is how to write a nested if to incorporate those formulas above into one in order to copy down the entire range... the FIND() formula returns a #Value! error if the test string isn't found. I'm looking for a formula which will return as True/ False error.
Any ideas?
I'm working with a data set that includes a series of text strings I need to evaluate in order to "recode" the strings into a normalized list I can write formulas off of. For example:
Rich (BB code):
Apple - TV
Banana - Radio
Carrot - Web
Date - Print
I know how to write formulas to find a particular string if I wanted to rewrite the formula for each line:
Rich (BB code):
Apple - TV =IF(FIND("TV",cell ref,1),"TV","")
Banana - Radio =IF(FIND("Radio",cell ref,1),"Radio","")
Carrot - Web =IF(FIND("Web",cell ref,1),"Web","")
Date - Print =IF(FIND("Print",cell ref,1),"Print","")
What I can't figure out is how to write a nested if to incorporate those formulas above into one in order to copy down the entire range... the FIND() formula returns a #Value! error if the test string isn't found. I'm looking for a formula which will return as True/ False error.
Any ideas?