Skip to main content
Solved

Finding Formula

  • July 28, 2020
  • 2 replies
  • 29 views

In my base, I have a column called Authors. I would like to make a formula so if the Authors field has “Hoch” in it, it will say Author, and if it doesn’t, it will say Not Author.
How do I do this?

Best answer by ScottWorld

Here you go:

IF(
FIND("Hoch",{Authors Field}),"Author",
"Not Author"
)

2 replies

ScottWorld
Forum|alt.badge.img+35
  • Genius
  • Answer
  • July 28, 2020

Here you go:

IF(
FIND("Hoch",{Authors Field}),"Author",
"Not Author"
)

  • Author
  • New Participant
  • July 28, 2020

Here you go:

IF(
FIND("Hoch",{Authors Field}),"Author",
"Not Author"
)

@ScottWorld
Thank you so much!