Job title

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zast
    Junior Member
    • Apr 2020
    • 19

    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.
  • zast
    Junior Member
    • Apr 2020
    • 19

    #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...