Excel if statement with multiple text values in a column

Closed
hnew16 - 5 Aug 2017 à 09:30
Mazzaropi Posts 1983 Registration date Monday 16 August 2010 Status Contributor Last seen 24 May 2023 - 5 Aug 2017 à 10:56
Hello,

I am using excel 2017.

I am trying to use this if statement to give me a value of 1 or 0.

=IF((CQ2="Computer");1;0)

The problem is that in CQ2, I sometimes have a list of text values, such as "Television;Computer;Phone" or "Computer;Phone" or "Newspaper;Television;Computer;Phone".

This was exported from Google drive survey.

How can I make it so it inputs a value of 1 if the word Computer is present and if not a 0?



Related:

1 response

Mazzaropi Posts 1983 Registration date Monday 16 August 2010 Status Contributor Last seen 24 May 2023 147
5 Aug 2017 à 10:56
hnew16, Good morning.

Try to use:

=IF(ISNUMBER(SEARCH("computer",CQ2)),1,0)

Please tell us if it worked as you desire.