I’m hoping someone can assist me with creating a formula. The formula should look at the field Article Title. We have thousands of articles. If any article contains a particular phrase, the field should return a specified URL. For example, we may have 10 articles with the word Movies in the title. For those ten articles, the formula should output https://www.imdb.com. More specifically, the article with the title Top 10 Movies of All Time would result in https://www.imdb.com in the field.
This is what I have thus far and it’s not working, at all.
IF(
FIND(
“Movies”,
{Article Title}, ‘https://www.imdb.com’,
)
)
Thanks in advance.