The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
I have been trying to figure out how to write this formula:
Where Category is any of “macOS”
AND checkbox Universal is checked
OR checkbox Intel is checked.
Here are two of my approaches:
IF(Category = "macOS", AND(Universal = 1), OR(Intel = 1), "tru...
Michael_Tchong:
IF(AND(Category = “macOS”, OR(Universal = 1, Intel = 1)), “true”)
When I use that formula, I get a blank results field, see screenshot.
Why is this still not possible? I want to create a content database in Airtable but would like to attach text files instead of laboriously pasting the text in a field, surprised Airtable can’t do that! It supports regex searches and what not, but can...