Upcoming database upgrades. Airtable functionality will be reduced for ~15 minutes at 06:00 UTC on Feb. 4 / 10:00 pm PT on Feb. 3. Learn more here
Jul 28, 2020 11:07 AM
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?
Solved! Go to Solution.
Jul 28, 2020 11:59 AM
Here you go:
IF(
FIND("Hoch",{Authors Field}),"Author",
"Not Author"
)