Workflow, if call status -> held, lead status -> contacted but it applies to all

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • james salvan
    Junior Member
    • Apr 2025
    • 4

    Workflow, if call status -> held, lead status -> contacted but it applies to all

    Hi Guys,

    Hope you are doing good and safe

    Simple question, I have advance pack where I'm using Workflow to signal tigger, when the call status is set "Held" the related Lead status is set to "Contacted" that well good, but here comes the problem after contacted when the user changes to converted or In Process. if again the call status is set "Held" the Lead status is reverted back to contact even though it is converted so any possible solution. Please let me know

    and open to formulas but they are confusing.

    Entity: call
    Tigger: signal
    condition: status == Held
    action: related Lead -> status = contacted

    Reference Pictures:

    Click image for larger version

Name:	image.png
Views:	30
Size:	42.4 KB
ID:	117031
    Click image for larger version

Name:	image.png
Views:	27
Size:	29.7 KB
ID:	117032
  • victor
    Active Community Member
    • Aug 2022
    • 865

    #2
    Hi james salvan,

    Instead of your Action, use the following:

    Click image for larger version

Name:	image.png
Views:	5
Size:	27.3 KB
ID:	117041

    Code for insert into Formula:
    Code:
    if (status != 'In Process' && status != 'Converted') {
        status = 'Contacted'
    }

    Comment


    • james salvan
      james salvan commented
      Editing a comment
      Thank you, Victor reply and it working successfully
Working...