Announcement

Collapse
No announcement yet.

Help with workflow conditions formula, please

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Help with workflow conditions formula, please

    Hello all
    I need an advise how to write conditions formula in workflow.
    We have entity "Bank Message" and have stream in it.
    I need create workflow when something posted into 'Bank Messages' stream with such conditions (all):
    1. Parent -> equals -> type of -> Bank Messages
    2. Created by -> not equals -> value -> 'some user'
    3. Parent 'Bank Messages' -> field 'Closed' value -> 'is not'
    I configured first and second conditions by dropdown options, but i cannot do it with third condition.
    How to do it using Formula?


    Click image for larger version  Name:	image.png Views:	0 Size:	57.8 KB ID:	106478


    Attached Files
    Last edited by jj.payally; 05-22-2024, 02:06 PM.

  • #2
    Hi,

    Try the formula:

    Code:
    parent.closed == false
    Note that the 'closed' field can be named differently in your instance.

    Comment


    • #3
      Finally found it:

      Code:
      record\attribute(parentType, parentId, 'isClosed') == false

      Comment

      Working...
      X