Formula for if cell contains word, assign value for multiple

Closed
hdiesel - 14 Jan 2016 à 16:43
 Blocked Profile - 14 Jan 2016 à 16:50
Hello,


I am looking for a formula to help me assign a value for multiple words and values.

If column A has the contains Apple, assign X. IF it contains grape OR banana, assign Y. If it contains neither, (or all other values) assign z.

Pretty complicated but would be cool to know.

Thanks!


Related:

1 response

Blocked Profile
14 Jan 2016 à 16:50
OK, the syntax for IF is as follows:
[code]
=IF(LOGIC_TEST,TRUE,FALSE)
/code

So, an example of such would be:
In cell a3 set "=IF(a1="Widget","123","")"

So if you were to put Widget, in cell A1, Cell A3 would have an "123".

You can then NEST if statements, for the other values. Like so:
=IF(a1="Widget","123",if(a1="Sprocket","999",if(a1="Hinge","567","NONE")))


I hope you understand this example.