Skip to main content
Solved

Setting up reminder based of rating field

  • June 28, 2022
  • 3 replies
  • 22 views

Forum|alt.badge.img+10

Just started working with a dental lab and I’m trying to create a base for targeted outreach to dental offices. After being out in the field today I have entered my notes and assigned a rating to each office. I would like to use 4 stars or 5 stars ratings to trigger an email automation to respective teammates about these particular offices.

Best answer by Vivid-Squid

May have figured it out…

This works for 4 stars IF({Prospect Rating}=4,‘Trigger Reminder’),

but how do I write it to work for 4 and 5 start ratings?


IF(OR({Prospect Rating}=4, {Prospect Rating}=5),'Trigger Reminder')

3 replies

Forum|alt.badge.img+10
  • Author
  • Known Participant
  • June 28, 2022

May have figured it out…

This works for 4 stars IF({Prospect Rating}=4,‘Trigger Reminder’),

but how do I write it to work for 4 and 5 start ratings?


Forum|alt.badge.img+16
  • Inspiring
  • Answer
  • June 28, 2022

May have figured it out…

This works for 4 stars IF({Prospect Rating}=4,‘Trigger Reminder’),

but how do I write it to work for 4 and 5 start ratings?


IF(OR({Prospect Rating}=4, {Prospect Rating}=5),'Trigger Reminder')

Forum|alt.badge.img+10
  • Author
  • Known Participant
  • June 29, 2022
IF(OR({Prospect Rating}=4, {Prospect Rating}=5),'Trigger Reminder')

Thank you @Vivid-Squid !