Announcement

Collapse
No announcement yet.

Job title

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

  • Job title

    Hello,

    I want to put the job title of a contact in a new field.
    I've created a job field (text) in contact.
    I put a formula :

    job=string\upperCase(title);
    I try also
    job=string\upperCase(contactRole);
    But my field is empty.​
    Nobody has any idea ?
    Thank you
    Last edited by zast; 12-12-2023, 07:28 AM.

  • #2
    I find a solution but it s work only if my myfield2 is updated :

    IfThen(
    entity\isAttributeChanged('myfield2'),
    $test = title;
    job = $test;
    );

    Comment

    Working...
    X