Announcement

Collapse
No announcement yet.

Formula entity\addLinkMultipleId

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

  • Formula entity\addLinkMultipleId

    Hello,
    i have tried to set assigned user from the entity formula and is not working i have tried the following configs:

    Code:
    entity\addLinkMultipleId("assignedUser", "id")
    entity\addLinkMultipleId("assignedUserId", "id")
    entity\addLinkMultipleId("AssignedUser", "id")
    entity\addLinkMultipleId("assignedUserId", "id")
    entity\addLinkMultipleId("User", "id")
    entity\addLinkMultipleId(User, "id")
    am i doing something wrong here or there is a bug ?

  • #2
    Hello
    Did you try
    Code:
    assignedUserId="{userId}";
    assignedUserName="{userFullName}"
    ?
    Last edited by tanya; 07-14-2017, 08:45 AM.

    Comment


    • #3
      Thank you for your response
      yes i did try it and it works fine but what about if i want to add multiple ? lets say for the contact field where multiple related can be added what about that ?

      Comment


      • #4
        example on the demo
        formula for accounts
        Code:
        entity\addLinkMultipleId('contacts', '53203b94287b3');
        assignedUser is a field with type 'link', not 'linkMultiple'

        Comment


        • #5
          ok great thank you

          Comment

          Working...
          X