May 11, 2020 01:52 PM
Hello,
I have a database that is updated live (through an integration), but some records can go directly to archive (via a filter). I am trying to build a formula that will identify as many archivable records as possible and mark them with :white_check_mark: . Such records would march either of the following criteria:
marked (manually) as non-actionable in a multiple-select field type
OR
contain a certain word in a single line field (e.g., if a single-line cell contains ‘no-reply’ => archive)
I already have a formula for the former, but I wonder if a formula that would combine both is possible to build.
Solved! Go to Solution.
May 11, 2020 03:29 PM
Yes, it is possible to combine the conditions in a single formula.
You want the OR
formula function.
It would look something like this:
IF(
OR(
FIND("non-actionable", {multiple-select field}),
FIND("no-reply", {single line text})
),
"✅"
)
May 11, 2020 03:29 PM
Yes, it is possible to combine the conditions in a single formula.
You want the OR
formula function.
It would look something like this:
IF(
OR(
FIND("non-actionable", {multiple-select field}),
FIND("no-reply", {single line text})
),
"✅"
)
May 13, 2020 08:50 AM
Hmm, that didn’t work for me, unfortunately, though I made sure the formula is formatted correctly. Any suggestions as to why it is not working?
May 13, 2020 05:05 PM
I had an extra comma in the formula. I edited the formula to remove the extra comma. Try it now. If it still doesn’t work, please post a screen shot.
May 21, 2020 12:32 PM
It worked. Many thanks!
May 21, 2020 04:13 PM
Glad to know that you got the answer you were seeking, @Marina_Malazoniya ! If you would, please mark the appropriate comment as the solution to your question. This helps others who may be searching with similar questions. Thanks!