Help

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.

Formula to identify records that need attention

Topic Labels: Formulas
Solved
Jump to Solution
1503 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Belen_Bueso_Rio
5 - Automation Enthusiast
5 - Automation Enthusiast

Dear lovely people,

I’m stuck with a formula (again). I have a base for coordination of translation work. I’d like to get an alert emoji if in a record:

  • “activity” is “translation” and WC is empty or
  • “activity” is “review, proofreading, upload” and “time task” is empty or
  • “activity” is empty

Do you know if this is possible to build in a formula field?

Thanks so much in advance! :blush:

Belén

1 Solution

Accepted Solutions
Mohamed_Swella1
13 - Mars
13 - Mars

Hi @Belen_Bueso_Rios,

Yes, definitely possible. Better yet, you can use the Colors or Views to do so.

If you want to use a formula, you can use the following:

IF(AND(Activity="translation",WC=BLANK()), "⚠️",
IF(AND(OR(Activity="review",Activity="proofreading",Activity="upload"),{Time Task}=Blank()), "⚠️",
IF(Activity=BLANK(),"⚠️")))

Let me know if that works as expected.

BR,
Mo

See Solution in Thread

2 Replies 2
Mohamed_Swella1
13 - Mars
13 - Mars

Hi @Belen_Bueso_Rios,

Yes, definitely possible. Better yet, you can use the Colors or Views to do so.

If you want to use a formula, you can use the following:

IF(AND(Activity="translation",WC=BLANK()), "⚠️",
IF(AND(OR(Activity="review",Activity="proofreading",Activity="upload"),{Time Task}=Blank()), "⚠️",
IF(Activity=BLANK(),"⚠️")))

Let me know if that works as expected.

BR,
Mo

Belen_Bueso_Rio
5 - Automation Enthusiast
5 - Automation Enthusiast

Of course, colors! That works beautifully. You’re a genius. THANK YOU SO MUCH!!
Belén