Reputation: 13
I created a formula that works in Excel but cannot get it to work in Google Sheets. Can someone please help?
=IF(ISNUMBER(SEARCH("amp",$A2)), "AMP", IF(ISNUMBER(SEARCH("feed",$A2)), "Feed", "Other"))
Thanks!
Upvotes: 0
Views: 40
Reputation: 1
try perhaps:
=IF(ISNUMBER(SEARCH("amp"; A2)); "AMP",
IF(ISNUMBER(SEARCH("feed"; A2)); "Feed"; "Other"))
Upvotes: 1